getCachedValue method

  1. @override
Future getCachedValue(
  1. String key
)
override

Retrieves a cached value from native storage.

Implementation

@override
Future<dynamic> getCachedValue(String key) {
  return methodChannel.invokeMethod('getCachedValue', {'key': key});
}