isAlphaNumeric property

bool get isAlphaNumeric

Checks if the string contains only alphanumeric characters.

Implementation

bool get isAlphaNumeric => regex(r'^[a-zA-z0-9]+$');