sqfliteFfiInit function

void sqfliteFfiInit()

Optional. Initialize ffi loader.

Call in main until you find a loader for your needs.

Currently this only performs windows specific operations. Implementation is provided for reference only.

Implementation

void sqfliteFfiInit() {
  if (Platform.isWindows) {
    windowsInit();
  }
}