getRefreshController method

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

Implementation

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