RefresherGridView constructor

const RefresherGridView({
  1. Key? key,
  2. required int? itemCount,
  3. required GridController controller,
  4. dynamic onRefresh()?,
  5. dynamic onLoading()?,
  6. bool? enablePullDown,
  7. bool? enablePullUp,
  8. WidgetItemBuilder? widgetItemBuilder,
  9. EdgeInsets? padding,
  10. Widget? emptyView,
  11. required SliverGridDelegate gridDelegate,
})

Implementation

const RefresherGridView(
    {super.key,
    required this.itemCount,
    required this.controller,
    this.onRefresh,
    this.onLoading,
    this.enablePullDown,
    this.enablePullUp,
    this.widgetItemBuilder,
    this.padding,
    this.emptyView,
    required this.gridDelegate});