GoogleCloudDialogflowV2EntityTypeBatch.fromJson constructor

GoogleCloudDialogflowV2EntityTypeBatch.fromJson(
  1. Map json_
)

Implementation

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