PagingHelper constructor

PagingHelper({
  1. bool? hasNext = false,
  2. bool? loadNext = false,
  3. String? nextUrl,
  4. int? page = 1,
  5. WidgetCallback? error,
  6. int? totalPages,
  7. Widget loader = const Center(child: CircularProgressIndicator()),
})

Implementation

PagingHelper(
    {this.hasNext = false,
    this.loadNext = false,
    this.nextUrl,
    this.page = 1,
    this.error,
    this.totalPages,
    this.loader = const Center(child: CircularProgressIndicator())});