get method

String? get(
  1. String name
)

Return the raw string value of the variable with the given name, or null if the variable is not defined.

Implementation

String? get(String name) => _declaredVariables[name];