show static method
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,
);
}