ConfigManagementHierarchyControllerDeploymentState.fromJson constructor

ConfigManagementHierarchyControllerDeploymentState.fromJson(
  1. Map json_
)

Implementation

ConfigManagementHierarchyControllerDeploymentState.fromJson(core.Map json_)
    : this(
        extension: json_.containsKey('extension')
            ? json_['extension'] as core.String
            : null,
        hnc: json_.containsKey('hnc') ? json_['hnc'] as core.String : null,
      );