regexAlphanumeric top-level constant
String
const regexAlphanumeric
Common regex patterns used for validation and parsing. Matches ASCII letters and digits only.
Implementation
const String regexAlphanumeric = r'^[a-zA-Z0-9]+$';