read method

  1. @override
Future<String> read(
  1. String key
)
override

Child classes has to implement this method, the ConfigCatClient is using it to get the actual value from the cache.

key is the key of the cache entry.

Implementation

@override
Future<String> read(String key) {
  return Future.value('');
}