TopicSubscription constructor

TopicSubscription({
  1. String? user,
  2. DateTime? updated,
  3. DateTime? touched,
  4. AccessMode? acs,
  5. int? read,
  6. int? recv,
  7. int? clear,
  8. dynamic public,
  9. dynamic private,
  10. bool? online,
  11. String? topic,
  12. int? seq,
  13. Seen? seen,
  14. bool? noForwarding,
  15. DateTime? deleted,
  16. DateTime? created,
  17. String? mode,
  18. int? unread,
})

Implementation

TopicSubscription({
  this.user,
  this.updated,
  this.touched,
  this.acs,
  this.read,
  this.recv,
  this.clear,
  this.public,
  this.private,
  this.online,
  this.topic,
  this.seq,
  this.seen,
  this.noForwarding,
  this.deleted,
  this.created,
  this.mode,
  this.unread,
});