clearCache method

Future<void> clearCache()

Implementation

Future<void> clearCache() async {
  if (_controller != null && !_isDisposed) {
    await _controller!.clearCache();
    await _controller!.clearLocalStorage();
  }
}