pageRefresh method

Future<void> pageRefresh({
  1. bool busy = false,
  2. bool globalRefresh = true,
})
inherited

页面刷新 默认全局刷新,并不显示加载过程

Implementation

Future<void> pageRefresh({bool busy: false, bool globalRefresh: true}) {
  return viewRefresh(busy: busy, rootRefresh: globalRefresh);
}