validateInput method

bool validateInput()

Implementation

bool validateInput() {
  if (issueController.text.isEmpty) {
    return false;
  }
  return true;
}