UserMute constructor

UserMute({
  1. required DateTime createdAt,
  2. DateTime? expires,
  3. UserObject? target,
  4. required DateTime updatedAt,
  5. UserObject? user,
})

Returns a new UserMute instance.

Implementation

UserMute({
  required this.createdAt,
  this.expires,
  this.target,
  required this.updatedAt,
  this.user,
});