GoogleCloudDialogflowV2IntentBatch.fromJson constructor

GoogleCloudDialogflowV2IntentBatch.fromJson(
  1. Map json_
)

Implementation

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