Reads the cached value for key.
key
@override /// Reads the cached value for [key]. Future<Object?> get(String key) async { final map = await _readAll(); return map[key]; }