dump<T extends Object> method

  1. @override
Future<PluggableStorageProvider> dump<T extends Object>()

Clears all data of the specified type from the storage.

Implementation

@override
Future<PluggableStorageProvider> dump<T extends Object>() async {
  await _getCache<T>().dump();
  return this;
}