upperCaseFormatter static method
upperCaseFormatter converts all input to uppercase.
Implementation
static List<TextInputFormatter> upperCaseFormatter() {
return [
TextInputFormatter.withFunction((oldValue, newValue) {
return newValue.copyWith(text: newValue.text.toUpperCase());
}),
];
}