deleteRealm static method

void deleteRealm(
  1. String path
)

Deletes all files associated with a Realm located at given path

The Realm must not be open.

Implementation

static void deleteRealm(String path) {
  realmCore.deleteRealmFiles(path);
}