PhoneGroupParticipants constructor

const PhoneGroupParticipants({
  1. required int count,
  2. required List<GroupCallParticipantBase> participants,
  3. required String nextOffset,
  4. required List<ChatBase> chats,
  5. required List<UserBase> users,
  6. required int version,
})

Phone Group Participants constructor.

Implementation

const PhoneGroupParticipants({
  required this.count,
  required this.participants,
  required this.nextOffset,
  required this.chats,
  required this.users,
  required this.version,
}) : super._();