isAlphanumeric property
bool
get
isAlphanumeric
Checks if the string contains only letters and numbers.
Implementation
bool get isAlphanumeric => hasMatch(regexAlphanumeric);
Checks if the string contains only letters and numbers.
bool get isAlphanumeric => hasMatch(regexAlphanumeric);