GoogleCloudApigeeV1SchemaSchemaProperty.fromJson constructor

GoogleCloudApigeeV1SchemaSchemaProperty.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1SchemaSchemaProperty.fromJson(core.Map json_)
    : this(
        createTime: json_.containsKey('createTime')
            ? json_['createTime'] as core.String
            : null,
        custom: json_.containsKey('custom')
            ? json_['custom'] as core.String
            : null,
        type: json_.containsKey('type') ? json_['type'] as core.String : null,
      );