pullRefresh method

Future<void> pullRefresh({
  1. bool? globalRefresh,
})

下拉刷新

Implementation

Future<void> pullRefresh({bool? globalRefresh}) async {
  return pageRefresh(
      busy: false, globalRefresh: globalRefresh ?? rootRefresh);
}