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