reset method

Future<void> reset()

Destroys all local records - specifically, memoryCache and sqliteProvider's data sources.

Implementation

Future<void> reset() async {
  await sqliteProvider.resetDb();
  memoryCacheProvider.reset();
}