tryGetAsync method

FutureOr<V?> tryGetAsync(
  1. K key
)

Implementation

FutureOr<V?> tryGetAsync(K key) async {
  return (await readAsync())[key];
}