DeclaredVariables.fromMap constructor

DeclaredVariables.fromMap(
  1. Map<String, String> variableMap
)

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);
}