set method

Future<bool?> set(
  1. String key,
  2. dynamic value
)

Implementation

Future<bool?> set(String key, dynamic value) async {
  Map store = await _getStoreMap();
  store[key] = value;
  return _setStoreMap(store);
}