VideoChat constructor

VideoChat({
  1. String? extra,
  2. int? client_id,
  3. int32? group_call_id,
  4. Bool? has_participants,
  5. MessageSender? default_participant_id,
})

Implementation

VideoChat({
  super.extra,
  super.client_id,
  this.group_call_id,
  this.has_participants,
  this.default_participant_id,
});