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