RequestedPeerChannel constructor

const RequestedPeerChannel({
  1. required int channelId,
  2. String? title,
  3. String? username,
  4. PhotoBase? photo,
})

Requested Peer Channel constructor.

Implementation

const RequestedPeerChannel({
  required this.channelId,
  this.title,
  this.username,
  this.photo,
}) : super._();