alphanumericOnly property
List<TextInputFormatter>
get
alphanumericOnly
Allows alphanumeric characters and spaces Good for usernames and mixed content
Implementation
static List<TextInputFormatter> get alphanumericOnly => <TextInputFormatter>[
FilteringTextInputFormatter.deny(_alphanumericPattern),
];