UpdateChannelParticipant constructor

const UpdateChannelParticipant({
  1. required bool viaChatlist,
  2. required int channelId,
  3. required DateTime date,
  4. required int actorId,
  5. required int userId,
  6. ChannelParticipantBase? prevParticipant,
  7. ChannelParticipantBase? newParticipant,
  8. ExportedChatInviteBase? invite,
  9. required int qts,
})

Update Channel Participant constructor.

Implementation

const UpdateChannelParticipant({
  required this.viaChatlist,
  required this.channelId,
  required this.date,
  required this.actorId,
  required this.userId,
  this.prevParticipant,
  this.newParticipant,
  this.invite,
  required this.qts,
}) : super._();