isAlphaNumeric property

bool isAlphaNumeric

Checks string is Alpha Numerical or not and return bool

Implementation

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