notificationDetails method

dynamic notificationDetails()

Implementation

notificationDetails() {
  return const NotificationDetails(
      android: AndroidNotificationDetails('channelId', 'channelName',
          importance: Importance.max, priority: Priority.high),
      iOS: DarwinNotificationDetails(
          presentSound: true, presentBadge: true, presentAlert: true));
}