ForegroundServiceNotificationOptions constructor

ForegroundServiceNotificationOptions({
  1. String? title,
  2. String? message,
  3. bool? showStopAction = false,
  4. String? stopActionText,
})

Implementation

ForegroundServiceNotificationOptions({
  this.title,
  this.message,
  this.showStopAction = false,
  this.stopActionText,
});