ChatInviteLink constructor

ChatInviteLink({
  1. required String inviteLink,
  2. required User creator,
  3. required bool createsJoinRequest,
  4. required bool isPrimary,
  5. required bool isRevoked,
  6. String? name,
  7. int? expireDate,
  8. int? memberLimit,
  9. int? pendingJoinRequestCount,
})

Basic constructor

Implementation

ChatInviteLink({
  required this.inviteLink,
  required this.creator,
  required this.createsJoinRequest,
  required this.isPrimary,
  required this.isRevoked,
  this.name,
  this.expireDate,
  this.memberLimit,
  this.pendingJoinRequestCount,
});