clear method

Future<void> clear()

清空所有缓存

Implementation

Future<void> clear() async {
  _memoryCache?.clear();
  await _persistentCache?.clear();
}