GoogleCloudDialogflowV2ListParticipantsResponse.fromJson constructor
GoogleCloudDialogflowV2ListParticipantsResponse.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowV2ListParticipantsResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_['nextPageToken'] as core.String?,
participants: (json_['participants'] as core.List?)
?.map((value) => GoogleCloudDialogflowV2Participant.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);