ServiceUpdateOptions constructor

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

Implementation

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