set method

void set(
  1. String key,
  2. dynamic value
)

Puts the key value in the storage

Implementation

void set(String key, dynamic value) => _storage[key] = value;