We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb43271 commit 4bcf060Copy full SHA for 4bcf060
objectbox/lib/src/native/box.dart
@@ -385,7 +385,7 @@ int _getOBXPutMode(PutMode mode) {
385
class _AsyncBoxHelper {
386
final Pointer<OBX_async> _cAsync;
387
388
- _AsyncBoxHelper(Box box) : _cAsync = C.async_1(box._cBox) {
+ _AsyncBoxHelper(Box box) : _cAsync = C.async1(box._cBox) {
389
initializeDartAPI();
390
}
391
objectbox/lib/src/native/sync.dart
@@ -149,7 +149,7 @@ class SyncClient {
149
final cServerUri = serverUri.toNativeUtf8();
150
try {
151
_cSync = checkObxPtr(
152
- C.sync_1(InternalStoreAccess.ptr(_store), cServerUri.cast()),
+ C.sync1(InternalStoreAccess.ptr(_store), cServerUri.cast()),
153
'failed to create sync client');
154
} finally {
155
malloc.free(cServerUri);
0 commit comments