set<T> method

dynamic set<T>(
  1. String key,
  2. T value
)

Implementation

set<T>(String key, T value) {
  variables[key] = value as Object;
}