setCachedValue method
Sets a cached value in native storage.
Implementation
@override
Future<void> setCachedValue(String key, dynamic value) {
return methodChannel.invokeMethod('setCachedValue', {
'key': key,
'value': value,
});
}
Sets a cached value in native storage.
@override
Future<void> setCachedValue(String key, dynamic value) {
return methodChannel.invokeMethod('setCachedValue', {
'key': key,
'value': value,
});
}