Room constructor

Room({
  1. String? id,
  2. DateTime? updatedAt,
  3. String? t,
  4. int? msgs,
  5. DateTime? ts,
  6. DateTime? lm,
  7. String? topic,
  8. String? rid,
  9. List<String>? usernames,
})

Implementation

Room({
  this.id,
  this.updatedAt,
  this.t,
  this.msgs,
  this.ts,
  this.lm,
  this.topic,
  this.rid,
  this.usernames,
});