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