isValidUsername method

bool isValidUsername()

Implementation

bool isValidUsername() {
  return split(" ").length >= 2 && length > 10;
}