exists static method

Future<bool> exists(
  1. String path
)

Checks whether a Realm exists at path.

Implementation

static Future<bool> exists(String path) async {
  return await Isolate.run(() => realmCore.checkIfRealmExists(path));
}