reset method

Future<void> reset()

Resets this BlocklistRepository.

Implementation

Future<void> reset() async {
  Log.debug('reset()', '$runtimeType');

  await blocklist.clear();
  await blocklist.around();
}