isAlphanumeric property
bool
get
isAlphanumeric
Implementation
bool get isAlphanumeric => RegExp(
r"^[a-zA-Z0-9]+$",
).hasMatch(this);
bool get isAlphanumeric => RegExp(
r"^[a-zA-Z0-9]+$",
).hasMatch(this);