Ban constructor

Ban({
  1. String? reason,
  2. required User user,
})

Implementation

Ban({
  this.reason,
  required this.user,
});