GroupCall constructor

GroupCall({
  1. String? groupCallId,
  2. required Client client,
  3. required VoIP voip,
  4. required Room room,
  5. required String type,
  6. required String intent,
})

Implementation

GroupCall({
  String? groupCallId,
  required this.client,
  required this.voip,
  required this.room,
  required this.type,
  required this.intent,
}) {
  this.groupCallId = groupCallId ?? genCallID();
}