get method

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

Retrieves a value by its key.

Returns the value if found, null otherwise.

Implementation

@override
Future<V?> get(K key) async {
  return _storage[key];
}