isAlphanumeric property

bool get isAlphanumeric

Checks if the string contains only letters and numbers.

Implementation

bool get isAlphanumeric => hasMatch(regexAlphanumeric);