SubscriptionUpdate constructor

SubscriptionUpdate({
  1. String? id,
  2. bool? open,
  3. bool? alert,
  4. int? unread,
  5. int? userMentions,
  6. int? groupMentions,
  7. DateTime? ts,
  8. String? rid,
  9. String? name,
  10. String? fName,
  11. String? t,
  12. User? u,
  13. DateTime? ls,
  14. DateTime? updatedAt,
  15. List<String>? roles,
})

Implementation

SubscriptionUpdate({
  this.id,
  this.open,
  this.alert,
  this.unread,
  this.userMentions,
  this.groupMentions,
  this.ts,
  this.rid,
  this.name,
  this.fName,
  this.t,
  this.u,
  this.ls,
  this.updatedAt,
  this.roles,
});