isValid method

bool isValid()

Implementation

bool isValid() {
  if (validateHijri(hYear, hMonth, hDay)) {
    if (hDay <= getDaysInMonth(hYear, hMonth)) {
      return true;
    } else {
      return false;
    }
  } else {
    return false;
  }
}