ChannelsChannelParticipants constructor

const ChannelsChannelParticipants({
  1. required int count,
  2. required List<ChannelParticipantBase> participants,
  3. required List<ChatBase> chats,
  4. required List<UserBase> users,
})

Channels Channel Participants constructor.

Implementation

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