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