GroupCall constructor

GroupCall({
  1. String? extra,
  2. int? client_id,
  3. int32? id,
  4. string? title,
  5. int32? scheduled_start_date,
  6. Bool? enabled_start_notification,
  7. Bool? is_active,
  8. Bool? is_rtmp_stream,
  9. Bool? is_joined,
  10. Bool? need_rejoin,
  11. Bool? can_be_managed,
  12. int32? participant_count,
  13. Bool? has_hidden_listeners,
  14. Bool? loaded_all_participants,
  15. vector<GroupCallRecentSpeaker>? recent_speakers,
  16. Bool? is_my_video_enabled,
  17. Bool? is_my_video_paused,
  18. Bool? can_enable_video,
  19. Bool? mute_new_participants,
  20. Bool? can_toggle_mute_new_participants,
  21. int32? record_duration,
  22. Bool? is_video_recorded,
  23. int32? duration,
})

Implementation

GroupCall({
  super.extra,
  super.client_id,
  this.id,
  this.title,
  this.scheduled_start_date,
  this.enabled_start_notification,
  this.is_active,
  this.is_rtmp_stream,
  this.is_joined,
  this.need_rejoin,
  this.can_be_managed,
  this.participant_count,
  this.has_hidden_listeners,
  this.loaded_all_participants,
  this.recent_speakers,
  this.is_my_video_enabled,
  this.is_my_video_paused,
  this.can_enable_video,
  this.mute_new_participants,
  this.can_toggle_mute_new_participants,
  this.record_duration,
  this.is_video_recorded,
  this.duration,
});