setVariables method
Sets multiple variables at once.
- Parameters
variables: A map of variable names to values.
- Behavior
- Updates or replaces the resolver’s internal variable state.
- Subsequent calls to resolve will use the updated variables.
Implementation
@override
void setVariables(Map<String, Object?> variables) {
_variables = variables;
}