set<T> method

void set<T>(
  1. String key,
  2. T? value
)
inherited

Implementation

void set<T>(String key, T? value) {
  model[key] = value;
}