getDetails static method

DarwinNotificationDetails getDetails({
  1. required NotifySound sound,
})

Implementation

static DarwinNotificationDetails getDetails({required NotifySound sound}) {
  return DarwinNotificationDetails(
    sound: sound.name,
    presentAlert: true,
    presentBadge: true,
    presentSound: true,
  );
}