GoogleCloudApigeeV1GrpcOperationGroup.fromJson constructor

GoogleCloudApigeeV1GrpcOperationGroup.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1GrpcOperationGroup.fromJson(core.Map json_)
  : this(
      operationConfigs:
          (json_['operationConfigs'] as core.List?)
              ?.map(
                (value) => GoogleCloudApigeeV1GrpcOperationConfig.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );