GoogleCloudApigeeV1GraphQLOperation.fromJson constructor
GoogleCloudApigeeV1GraphQLOperation.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1GraphQLOperation.fromJson(core.Map json_)
: this(
operation: json_.containsKey('operation')
? json_['operation'] as core.String
: null,
operationTypes: json_.containsKey('operationTypes')
? (json_['operationTypes'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);