put abstract method

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

Stores a value with the given key.

Returns true if the operation was successful, false otherwise.

Implementation

Future<bool> put(K key, V value);