isUsernameInstagram method

bool isUsernameInstagram()

Username (Instagram) regex

May start with @ Minimum 3 characters, maximum 30 characters Allow aplhanumeric, "_" and "." characters Must not start or end with "."

Implementation

bool isUsernameInstagram() => RegVal.hasMatch(
      this,
      RegexPattern.usernameInstagram,
    );