reset method

Future<void> reset()

Resets the CommonDatabase and closes this CommonDriftProvider.

Implementation

Future<void> reset() async {
  await _completeAllOperations((db) async {
    await _caught(db?.reset());
    this.db = db;
  });
}