reset method
Destroys all local records - specifically, memoryCache and sqliteProvider's data sources.
Implementation
Future<void> reset() async {
await sqliteProvider.resetDb();
memoryCacheProvider.reset();
}
Destroys all local records - specifically, memoryCache and sqliteProvider's data sources.
Future<void> reset() async {
await sqliteProvider.resetDb();
memoryCacheProvider.reset();
}