destroy method
Delete the database for the current SecurityClient instance.
final SecurityClient securityClient = ...;
await securityClient.destroy();
Implementation
Future<void> destroy() async {
final database = _database;
await deleteDatabase(database.path);
}