handleInIsolate method
Handle a method call
Implementation
Future<dynamic> handleInIsolate({SqfliteFfiInit? ffiInit}) async {
try {
if (_debug) {
print('main_send: $this');
}
var result = await _isolateHandle(ffiInit);
if (_debug) {
print('main_recv: $result');
}
return result;
} catch (e, st) {
if (_debug) {
print(e);
print(st);
}
rethrow;
}
}