get method

  1. @override
Future<AtNotification?> get(
  1. String key
)
override

Retrieves the value mapped to key, or null if no mapping exists. Implementations may also throw a backend-specific not-found exception (e.g. KeyNotFoundException) instead of returning null — consult the concrete impl.

Implementation

@override
Future<AtNotification?> get(key) async {
  return await getValue(key);
}