InviteInfo constructor

InviteInfo({
  1. required String callerAccId,
  2. required CallType callType,
  3. String? extraInfo,
  4. String? channelId,
})

Implementation

InviteInfo({
  required this.callerAccId,
  required this.callType,
  this.extraInfo,
  this.channelId,
});