GoogleCloudDialogflowV2BatchDeleteIntentsRequest.fromJson constructor

GoogleCloudDialogflowV2BatchDeleteIntentsRequest.fromJson(
  1. Map json_
)

Implementation

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