isUsername static method

bool isUsername(
  1. String input
)

Returns whether the input matches the username regex.

Implementation

static bool isUsername(String input) {
  return matches(regexUsername, input);
}