AudioNotification constructor

AudioNotification({
  1. required String smallIconFileName,
  2. String? title,
  3. String? subTitle = "",
  4. String? largeIconUrl = "",
  5. bool isLocal = false,
  6. NotificationDefaultActions notificationDefaultActions = NotificationDefaultActions.ALL,
  7. NotificationActionCallbackMode notificationActionCallbackMode = NotificationActionCallbackMode.DEFAULT,
  8. NotificationCustomActions notificationCustomActions = NotificationCustomActions.DISABLED,
})

Implementation

AudioNotification({
  required this.smallIconFileName,
  this.title,
  this.subTitle = "",
  this.largeIconUrl = "",
  this.isLocal = false,
  this.notificationDefaultActions = NotificationDefaultActions.ALL,
  this.notificationActionCallbackMode =
      NotificationActionCallbackMode.DEFAULT,
  this.notificationCustomActions = NotificationCustomActions.DISABLED,
});