isAlphanumeric property
      
      bool
      get
      isAlphanumeric
      
    
    
Checks if the string is alphanumeric.
Implementation
bool get isAlphanumeric => RegExp(r'^[a-zA-Z0-9]+$').hasMatch(this);Checks if the string is alphanumeric.
bool get isAlphanumeric => RegExp(r'^[a-zA-Z0-9]+$').hasMatch(this);