isAlphaNumeric property
bool
get
isAlphaNumeric
Checks if the string contains only alphanumeric characters.
Implementation
bool get isAlphaNumeric => regex(r'^[a-zA-z0-9]+$');
Checks if the string contains only alphanumeric characters.
bool get isAlphaNumeric => regex(r'^[a-zA-z0-9]+$');