ManagedConfigurationTemplate.fromJson constructor

ManagedConfigurationTemplate.fromJson(
  1. Map json_
)

Implementation

ManagedConfigurationTemplate.fromJson(core.Map json_)
    : this(
        configurationVariables: json_.containsKey('configurationVariables')
            ? (json_['configurationVariables']
                    as core.Map<core.String, core.dynamic>)
                .map(
                (key, value) => core.MapEntry(
                  key,
                  value as core.String,
                ),
              )
            : null,
        templateId: json_.containsKey('templateId')
            ? json_['templateId'] as core.String
            : null,
      );