lowerCaseFormatter static method

List<TextInputFormatter> lowerCaseFormatter()

lowerCaseFormatter converts all input to lowercase.

Implementation

static List<TextInputFormatter> lowerCaseFormatter() {
  return [
    TextInputFormatter.withFunction((oldValue, newValue) {
      return newValue.copyWith(text: newValue.text.toLowerCase());
    }),
  ];
}