bool validateUsername(String username) => !validateEmail(username) && !validateMobile(username) && username.length > 6;