isAlphanumeric property
bool
get
isAlphanumeric
Check if the string contains only letters and numbers
Implementation
bool get isAlphanumeric => RegexUtils.alphanumeric.hasMatch(this);
Check if the string contains only letters and numbers
bool get isAlphanumeric => RegexUtils.alphanumeric.hasMatch(this);