GoogleCloudApigeeV1GraphQLOperationGroup.fromJson constructor

GoogleCloudApigeeV1GraphQLOperationGroup.fromJson(
  1. Map json_
)

Implementation

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