cancelAllScheduledNotifications method
Cancel every notification that was scheduled through scheduleNotification.
Implementation
@override
Future<bool> cancelAllScheduledNotifications() async {
for (final timer in _scheduledTimers.values) {
timer.cancel();
}
_scheduledTimers.clear();
return true;
}