nextLoading property

RxBool get nextLoading

Indicated whether the next page is being fetched.

Implementation

RxBool get nextLoading =>
    paginations
        .firstWhereOrNull((e) => e.p.nextLoading.isTrue)
        ?.p
        .nextLoading ??
    RxBool(false);