ConfigurationVariables.fromJson constructor

ConfigurationVariables.fromJson(
  1. Map json_
)

Implementation

ConfigurationVariables.fromJson(core.Map json_)
    : this(
        mcmId: json_['mcmId'] as core.String?,
        variableSet: (json_['variableSet'] as core.List?)
            ?.map((value) => VariableSet.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
      );