GroupCallId constructor

const GroupCallId({
  1. required int id,
  2. dynamic extra,
  3. int? clientId,
})

Contains the group call identifier

Implementation

const GroupCallId({
  required this.id,
  this.extra,
  this.clientId,
});