NotificationData constructor

const NotificationData({
  1. String? title,
  2. String? body,
  3. NotificationType type = NotificationType.info,
})

Implementation

const NotificationData({
  this.title,
  this.body,
  this.type = NotificationType.info,
});