alphanumeric property

RegExp alphanumeric
final

Matches a string containing only alphanumeric characters.

Implementation

static final RegExp alphanumeric = RegExp(r'^[a-zA-Z0-9]+$');