NotificationUser constructor

NotificationUser({
  1. String? id,
  2. String? username,
  3. String? name,
})

Implementation

NotificationUser({
  this.id,
  this.username,
  this.name,
});