getRefreshController method

RefreshController getRefreshController({
  1. bool initialRefresh = false,
})

Implementation

RefreshController getRefreshController({bool initialRefresh = false}) {
  _refreshController ??= RefreshController(initialRefresh: initialRefresh);
  return _refreshController!;
}