GoogleCloudDialogflowCxV3AgentValidationResult.fromJson constructor

GoogleCloudDialogflowCxV3AgentValidationResult.fromJson(
  1. Map json_
)

Implementation

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