seed method

void seed(
  1. String key,
  2. String value
)

Writes value into the in-memory map without counting as a save call.

Implementation

void seed(String key, String value) {
  _data[key] = value;
}