setLoadingMore method

void setLoadingMore(
  1. bool isLoadingMore
)

Sets the loading more state of the widget. Notifies listeners after updating the state.

Implementation

void setLoadingMore(bool isLoadingMore) {
  this.isLoadingMore = isLoadingMore;
  notifyListeners();
}