ManagedConfigurationTemplate.fromJson constructor

ManagedConfigurationTemplate.fromJson(
  1. Map json_
)

Implementation

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