checkIfEventIsNotResponded method

bool checkIfEventIsNotResponded(
  1. LocationNotificationModel locationNotificationModel
)

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;
}