GoogleCloudDialogflowCxV3ParameterDefinition.fromJson constructor

GoogleCloudDialogflowCxV3ParameterDefinition.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3ParameterDefinition.fromJson(core.Map json_)
  : this(
      description: json_['description'] as core.String?,
      name: json_['name'] as core.String?,
      type: json_['type'] as core.String?,
      typeSchema: json_.containsKey('typeSchema')
          ? GoogleCloudDialogflowCxV3TypeSchema.fromJson(
              json_['typeSchema'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );