validateInput method
Implementation
bool validateInput() {
if (paymentDate.text.isNotEmpty) {
return true;
}
if (paymentIdController.text.isNotEmpty) {
return true;
}
if (amountController.text.isNotEmpty) {
return true;
}
if (productNameController.text.isNotEmpty) {
return true;
} else {
return false;
}
}