UpdateChatParticipant constructor

const UpdateChatParticipant({
  1. required int chatId,
  2. required DateTime date,
  3. required int actorId,
  4. required int userId,
  5. ChatParticipantBase? prevParticipant,
  6. ChatParticipantBase? newParticipant,
  7. ExportedChatInviteBase? invite,
  8. required int qts,
})

Update Chat Participant constructor.

Implementation

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