ManagedConfiguration.fromJson constructor

ManagedConfiguration.fromJson(
  1. Map json_
)

Implementation

ManagedConfiguration.fromJson(core.Map json_)
  : this(
      configurationVariables: json_.containsKey('configurationVariables')
          ? ConfigurationVariables.fromJson(
              json_['configurationVariables']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      kind: json_['kind'] as core.String?,
      managedProperty: (json_['managedProperty'] as core.List?)
          ?.map(
            (value) => ManagedProperty.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      productId: json_['productId'] as core.String?,
    );