UserMuteResponse constructor

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

Returns a new UserMuteResponse instance.

Implementation

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