ChannelMute constructor

ChannelMute({
  1. ChannelResponse? channel,
  2. required DateTime createdAt,
  3. DateTime? expires,
  4. required DateTime updatedAt,
  5. UserObject? user,
})

Returns a new ChannelMute instance.

Implementation

ChannelMute({
  this.channel,
  required this.createdAt,
  this.expires,
  required this.updatedAt,
  this.user,
});