formatEditUpdate method
Implementation
@override
TextEditingValue formatEditUpdate(
TextEditingValue oldValue,
TextEditingValue newValue,
) =>
super.formatEditUpdate(
oldValue,
newValue.copyWith(text: newValue.text.toUpperCase()),
);