InstanceGroupManagersPatchPerInstanceConfigsReq.fromJson constructor

InstanceGroupManagersPatchPerInstanceConfigsReq.fromJson(
  1. Map json_
)

Implementation

InstanceGroupManagersPatchPerInstanceConfigsReq.fromJson(core.Map json_)
    : this(
        perInstanceConfigs: json_.containsKey('perInstanceConfigs')
            ? (json_['perInstanceConfigs'] as core.List)
                .map((value) => PerInstanceConfig.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );