setLazyVariable method
Sets a variable value.
variable
The variable name.
value
- The variable value.
Returns the expression, allows to chain methods.
Implementation
Expression setLazyVariable(String variable, LazyNumber? value) {
variables[variable] = value;
return this;
}