isAlphanumeric property

bool get isAlphanumeric

Check if the string contains only letters and numbers

Implementation

bool get isAlphanumeric => RegexUtils.alphanumeric.hasMatch(this);