GoogleCloudApigeeV1SchemaSchemaElement.fromJson constructor

GoogleCloudApigeeV1SchemaSchemaElement.fromJson(
  1. Map json_
)

Implementation

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