NotificationResult constructor

NotificationResult({
  1. String? id,
  2. String? token,
  3. DateTime? tokenExpires,
  4. String? type,
  5. String? rid,
  6. String? msg,
  7. DateTime? ts,
  8. NotificationUser? user,
  9. DateTime? updatedAt,
  10. List<String>? mentions,
  11. List<String>? channels,
})

Implementation

NotificationResult({
  this.id,
  this.token,
  this.tokenExpires,
  this.type,
  this.rid,
  this.msg,
  this.ts,
  this.user,
  this.updatedAt,
  this.mentions,
  this.channels,
});