alphaNumericOnly property Null safety

String alphaNumericOnly
read / write

Alphabet & Numeric Only regex (No Whitespace & Symbols)

Implementation

static String alphaNumericOnly = r'^[a-zA-Z0-9]+$';