static String? commonValidation(String value, String messageError) { return value.trim().isEmpty ? messageError : null; }