BannedUserInfo constructor

const BannedUserInfo({
  1. required String id,
  2. required String name,
  3. DateTime? expiresAt,
  4. String? reason,
})

Implementation

const BannedUserInfo({
  required this.id,
  required this.name,
  this.expiresAt,
  this.reason,
});