reset method

Future<void> reset()

Resets the ScopedDatabase and closes this ScopedDriftProvider.

Implementation

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