show static method

Future<void> show(
  1. LocalNotificationModel model
)

Implementation

static   Future<void> show(LocalNotificationModel model) async {
   final NotificationDetails notificationDetails = await NotifiyDetailsCreator.createNotifyDetails(model);
   await FlutterLocalNotificationsPlugin().show(
     model.id,
     model.title,
     model.body,
     notificationDetails,
     payload: model.payload,
   );
 }