put abstract method

Future<void> put(
  1. dynamic key,
  2. E value, {
  3. bool notify = true,
})

Saves the key - value pair.

Implementation

Future<void> put(
  dynamic key,
  E value, {
  bool notify = true,
});