showLocalNotification method

dynamic showLocalNotification(
  1. CustomNotification notification
)

Implementation

showLocalNotification(CustomNotification notification) {
  localNotificationsPlugin.show(
    notification.id,
    notification.title,
    notification.body,
    NotificationDetails(android: androidDetails, iOS: iosDetails),
    payload: jsonEncode(notification.payload?.toJson()),
  );
}