setNoMoreData method

void setNoMoreData()

set the controller status to noMoreData. Use this method when the widget has loaded all the data. AND there is no more data to load.

Implementation

void setNoMoreData() {
  _status = const GammaControllerStatus.noMoreData();
  notifyListeners();
}