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