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