handleLoadMore method

Future<IndicatorResult?> handleLoadMore()

Implementation

Future<easy.IndicatorResult?> handleLoadMore() async {
  MConfig.isChildDataLoading.value = true;
  mPageState.goPage += 1;
  final easy.IndicatorResult? value = await onGetData();
  mLogger.d("MEasyRefresh::handleLoadMore::value::$value");
  MConfig.isChildDataLoading.value = false;
  return value;
}