static String? validateEmpty(String? v) { if (v!.isEmpty) { return Strings.fieldCantBeEmpty; } else { return null; } }