Channel constructor

Channel({
  1. String? id,
  2. String? name,
  3. String? t,
  4. List<String>? usernames,
  5. int? msgs,
  6. User? user,
  7. DateTime? ts,
})

Implementation

Channel({
  this.id,
  this.name,
  this.t,
  this.usernames,
  this.msgs,
  this.user,
  this.ts,
});