onScrollToBottom method

  1. @override
void onScrollToBottom(
  1. TextEditingController textEditingController
)
override

onScrollToBottom is a function which is used to perform some action when the scroll reaches the bottom of the suggestion list

Implementation

@override
void onScrollToBottom(TextEditingController textEditingController) {
  fetchItems(textEditingController: textEditingController);
}