put method

Future<V?> put(
  1. K key,
  2. V? value
)

Implementation

Future<V?> put(K key, V? value) => then((o) => o.put(key, value));