onChange method

  1. @override
void onChange(
  1. TextEditingController textEditingController,
  2. String previousText
)
override

onChange is a function which is used to perform some action when the text is changed

Implementation

@override
void onChange(
    TextEditingController textEditingController, String previousText) {
  // TODO: implement onChange
}