existsSync static method

bool existsSync(
  1. String path
)

Synchronously checks whether a Realm exists at path

Implementation

static bool existsSync(String path) {
  return realmCore.checkIfRealmExists(path);
}