getIfPresent method

  1. @override
Future<V?> getIfPresent(
  1. K key
)
override

Returns the value associated with the key, otherwise null.

Implementation

@override
Future<V?> getIfPresent(K key) => delegate.getIfPresent(key);