DecryptGroupCallData constructor

DecryptGroupCallData({
  1. required int groupCallId,
  2. MessageSender? participantId,
  3. GroupCallDataChannel? dataChannel,
  4. required String data,
})

Implementation

DecryptGroupCallData({
  required this.groupCallId,
  this.participantId,
  this.dataChannel,
  required this.data,
});