static String? validateCheckbox({ bool v = false, String error = Strings.checkboxValidation, }) { if (!v) { return error; } else { return null; } }