GoogleCloudDialogflowCxV3TypeSchema.fromJson constructor

GoogleCloudDialogflowCxV3TypeSchema.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3TypeSchema.fromJson(core.Map json_)
  : this(
      inlineSchema: json_.containsKey('inlineSchema')
          ? GoogleCloudDialogflowCxV3InlineSchema.fromJson(
              json_['inlineSchema'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      schemaReference: json_.containsKey('schemaReference')
          ? GoogleCloudDialogflowCxV3TypeSchemaSchemaReference.fromJson(
              json_['schemaReference'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );