checkTime method

bool checkTime()

Implementation

bool checkTime() {
  if ((countingDown && timeRemaining <= 0)) {
    Navigator.pop(context,null);
    return true;
  }
  return false;
}