addList method

void addList(
  1. String key,
  2. JsonEncodable value
)

Implementation

void addList(String key, JsonEncodable value) {
  List<dynamic>? currentList = getList(key);
  currentList ??= [];
  currentList.add(value.toJson());
  setList(key, currentList);
}