clearDb function

Future<void> clearDb()

Clears any database related files from the filesystem.

Implementation

Future<void> clearDb() {
  throw UnsupportedError(
    'Database clearing isn\'t supported on this platform.',
  );
}