DeclaredVariables.fromMap constructor
Initialize a newly created set of declared variables to define variables
whose names are the keys in the give variableMap
and whose values are
the corresponding values from the map.
Implementation
DeclaredVariables.fromMap(Map<String, String> variableMap) {
_declaredVariables.addAll(variableMap);
}