GoogleCloudApigeeV1GraphqlDocumentation.fromJson constructor
GoogleCloudApigeeV1GraphqlDocumentation.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1GraphqlDocumentation.fromJson(core.Map json_)
: this(
endpointUri: json_['endpointUri'] as core.String?,
schema:
json_.containsKey('schema')
? GoogleCloudApigeeV1DocumentationFile.fromJson(
json_['schema'] as core.Map<core.String, core.dynamic>,
)
: null,
);