GoogleCloudDialogflowV2ValidationResult.fromJson constructor

GoogleCloudDialogflowV2ValidationResult.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2ValidationResult.fromJson(core.Map json_)
    : this(
        validationErrors: (json_['validationErrors'] as core.List?)
            ?.map((value) => GoogleCloudDialogflowV2ValidationError.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
      );