NotificationParams constructor

const NotificationParams({
  1. int? id,
  2. bool? showNotification,
  3. String? subtitle,
  4. String? callbackText,
  5. bool? isShowCallback,
  6. int? count,
})

Implementation

const NotificationParams({
  this.id,
  this.showNotification,
  this.subtitle,
  this.callbackText,
  this.isShowCallback,
  this.count,
});