ServiceUpdateOptions constructor

const ServiceUpdateOptions({
  1. required ForegroundTaskOptions? foregroundTaskOptions,
  2. required String? notificationContentTitle,
  3. required String? notificationContentText,
  4. NotificationIcon? notificationIcon,
  5. List<NotificationButton>? notificationButtons,
  6. String? notificationInitialRoute,
  7. Function? callback,
})

Implementation

const ServiceUpdateOptions({
  required this.foregroundTaskOptions,
  required this.notificationContentTitle,
  required this.notificationContentText,
  this.notificationIcon,
  this.notificationButtons,
  this.notificationInitialRoute,
  this.callback,
});