RolloutPlanWaveSelectorResourceHierarchySelector.fromJson constructor

RolloutPlanWaveSelectorResourceHierarchySelector.fromJson(
  1. Map json_
)

Implementation

RolloutPlanWaveSelectorResourceHierarchySelector.fromJson(core.Map json_)
  : this(
      includedFolders: (json_['includedFolders'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      includedOrganizations: (json_['includedOrganizations'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      includedProjects: (json_['includedProjects'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );