isLocalDatabaseSupportedOnHostOS static method

bool isLocalDatabaseSupportedOnHostOS()

Checks if the host OS supports the local database with the used plugin.

Implementation

static bool isLocalDatabaseSupportedOnHostOS() {
  bool isIOS = !kIsWeb && Platform.isIOS;
  bool isMacOS = !kIsWeb && Platform.isMacOS;
  bool isAndroid = !kIsWeb && Platform.isAndroid;

  return isIOS || isMacOS || isAndroid;
}