ChannelParticipantCreator constructor

const ChannelParticipantCreator({
  1. required int userId,
  2. required ChatAdminRightsBase adminRights,
  3. String? rank,
})

Channel Participant Creator constructor.

Implementation

const ChannelParticipantCreator({
  required this.userId,
  required this.adminRights,
  this.rank,
}) : super._();