isPastNotification method
Checks if a location notification is in the past
Implementation
isPastNotification(LocationNotificationModel _locationNotificationModel) {
if ((_locationNotificationModel.to != null) &&
(_locationNotificationModel.to!.isBefore(DateTime.now()))) {
return true;
}
return false;
}