ChannelMute constructor

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

Constructor used for json serialization

Implementation

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