NotificationEvent constructor

NotificationEvent({
  1. String? packageName,
  2. String? title,
  3. String? message,
  4. DateTime? timeStamp,
})

Implementation

NotificationEvent({
  this.packageName,
  this.title,
  this.message,
  this.timeStamp,
});