handle method
Implementation
@override
Future<void> handle(LocalNotificationModel notification) async {
notification.isWorkInBackground
? await TaskRegister().registerTask(notification)
: await ScheduleNotify.zonedSchedule(notification);
}