CommunityFull constructor

const CommunityFull({
  1. required int id,
  2. required String about,
  3. required PhotoBase chatPhoto,
  4. required List<CommunityPeerBase> linkedPeers,
  5. int? adminsCount,
  6. int? kickedCount,
  7. int? peerLinkRequestsPending,
})

Community Full constructor.

Implementation

const CommunityFull({
  required this.id,
  required this.about,
  required this.chatPhoto,
  required this.linkedPeers,
  this.adminsCount,
  this.kickedCount,
  this.peerLinkRequestsPending,
}) : super._();