static String? validateIsNull(dynamic value, String fieldName) { if (value == null) { return makeValidateFieldMessage(fieldName); } return null; }