alphaNumericFormatter static method
alphaNumericFormatter allows alphanumeric input.
Implementation
static List<TextInputFormatter> alphaNumericFormatter() {
return [FilteringTextInputFormatter.allow(RegExp(r'[a-zA-Z0-9]'))];
}
alphaNumericFormatter allows alphanumeric input.
static List<TextInputFormatter> alphaNumericFormatter() {
return [FilteringTextInputFormatter.allow(RegExp(r'[a-zA-Z0-9]'))];
}