isAlphabetNumeric method

bool isAlphabetNumeric()

Alphabet & Numeric Only regex

Implementation

bool isAlphabetNumeric() => RegVal.hasMatch(
      this,
      RegexPattern.alphaNumericOnly,
    );