onSwipeRefresh method

void onSwipeRefresh()

Implementation

void onSwipeRefresh(){
  if(bloc == null) return;
  if (!curModel.isLoading()) {
    curModel.swipeRefreshing = true;
    bloc!.startSwipeRefreshLoading(curModel.data, onLoadComplete: controller._onLoadComplete);
  }
}