GoogleCloudApigeeV1SchemaSchemaElement.fromJson constructor
GoogleCloudApigeeV1SchemaSchemaElement.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1SchemaSchemaElement.fromJson(core.Map json_)
: this(
name: json_.containsKey('name') ? json_['name'] as core.String : null,
properties: json_.containsKey('properties')
? GoogleCloudApigeeV1SchemaSchemaProperty.fromJson(
json_['properties'] as core.Map<core.String, core.dynamic>)
: null,
);