FinishRefresh typedef

FinishRefresh = void Function({bool noMore, bool success})

结束刷新 success 为是否成功(为false时,noMore无效) noMore 为是否有更多数据

Implementation

typedef FinishRefresh = void Function({
  bool success,
  bool noMore,
});