addVariable method

void addVariable(
  1. dynamic value, {
  2. required String id,
})

Adds a named variable to the context

Implementation

void addVariable(value, {required String id}) {
  _variables[id] = value;
}