GoogleCloudDialogflowCxV3AgentValidationResult.fromJson constructor

GoogleCloudDialogflowCxV3AgentValidationResult.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3AgentValidationResult.fromJson(core.Map json_)
    : this(
        flowValidationResults: (json_['flowValidationResults'] as core.List?)
            ?.map((value) =>
                GoogleCloudDialogflowCxV3FlowValidationResult.fromJson(
                    value as core.Map<core.String, core.dynamic>))
            .toList(),
        name: json_['name'] as core.String?,
      );