String? validateAccountNumber(String value) { if (value.isEmpty) return "Please Enter your Account Number"; return null; }