InfiniteScroll<T> constructor

InfiniteScroll<T>({
  1. Key? key,
  2. required Widget builder(
    1. T,
    2. int index
    ),
  3. required InfiniteController controller,
  4. String? params,
  5. Axis axis = Axis.vertical,
  6. double? width,
  7. double? height,
  8. EdgeInsetsGeometry? margin,
  9. EdgeInsetsGeometry? padding,
  10. Border? border,
  11. int? flex,
  12. Style? style,
  13. dynamic onTap()?,
  14. Widget? icon,
  15. Widget? rearIcon,
  16. Color? backgroundColor,
  17. Widget? empty,
  18. Widget? bottom,
})

Implementation

InfiniteScroll(
    {super.key,
    required this.builder,
    required this.controller,
    this.params,
    this.axis = Axis.vertical,
    super.width,
    super.height,
    super.margin,
    super.padding,
    super.border,
    super.flex,
    super.style,
    super.onTap,
    super.icon,
    super.rearIcon,
    super.backgroundColor,
    this.empty,
    this.bottom});