ChatParticipants constructor

const ChatParticipants({
  1. required int chatId,
  2. required List<ChatParticipantBase> participants,
  3. required int version,
})

Chat Participants constructor.

Implementation

const ChatParticipants({
  required this.chatId,
  required this.participants,
  required this.version,
}) : super._();