bool validatePasswordBool(String value) { if (value.length < 8) { return false; } else { return true; } }