clearCache method

  1. @override
Future<bool?> clearCache(
  1. String? type
)
override

Implementation

@override
Future<bool?> clearCache(String? type) async {
  return await methodChannel.invokeMethod<bool>('clearCache', {'type': type});
}