upperCaseFormatter static method

List<TextInputFormatter> upperCaseFormatter()

upperCaseFormatter converts all input to uppercase.

Implementation

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