syncDynamicLibraryPath static method

Future<void> syncDynamicLibraryPath()

Implementation

static Future<void> syncDynamicLibraryPath() async {
  String? path = await _nativeChannel.invokeMethod('getDynamicLibraryPath');
  if (path != null) {
    KrakenDynamicLibrary.dynamicLibraryPath = path;
  }
}