get method
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);
}