isAlphanumeric property

bool get isAlphanumeric

Returns true if the string only contains letters and numbers.

Implementation

bool get isAlphanumeric => _alphanumericRegExp.hasMatch(this);