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_.containsKey('kind') ? json_['kind'] as core.String : null,
        managedProperty: json_.containsKey('managedProperty')
            ? (json_['managedProperty'] as core.List)
                .map((value) => ManagedProperty.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        productId: json_.containsKey('productId')
            ? json_['productId'] as core.String
            : null,
      );