checkIfEventIsNotResponded method
checks if logged in user's already requested location with atsign
is not responded.
Implementation
bool checkIfEventIsNotResponded(
LocationNotificationModel locationNotificationModel) {
if ((!locationNotificationModel.isAccepted) &&
(!locationNotificationModel.isExited)) {
return true;
}
return false;
}