EncryptGroupCallData constructor

EncryptGroupCallData({
  1. required int groupCallId,
  2. GroupCallDataChannel? dataChannel,
  3. required String data,
  4. required int unencryptedPrefixSize,
})

Implementation

EncryptGroupCallData({
  required this.groupCallId,
  this.dataChannel,
  required this.data,
  required this.unencryptedPrefixSize,
});