handle method
Implementation
@override
Future<void> handle(LocalNotificationModel notification) async {
notification.isWorkInBackground
? await TaskRegister().registerPeriodicTask(notification)
: await PeriodicNotify.periodicallyShow(notification);
}