RequestPeerTypeChat constructor

const RequestPeerTypeChat({
  1. required bool creator,
  2. required bool botParticipant,
  3. bool? hasUsername,
  4. bool? forum,
  5. ChatAdminRightsBase? userAdminRights,
  6. ChatAdminRightsBase? botAdminRights,
})

Request Peer Type Chat constructor.

Implementation

const RequestPeerTypeChat({
  required this.creator,
  required this.botParticipant,
  this.hasUsername,
  this.forum,
  this.userAdminRights,
  this.botAdminRights,
}) : super._();