refresh abstract method

Future<void> refresh(
  1. String key,
  2. Map<String, dynamic> value
)

It either updates the data found at key with value or, if there is no previous data at key, creates a new cache line at key with value.

Note: value must be json encodable.

Implementation

Future<void> refresh(String key, Map<String, dynamic> value);