InfiniteScroll<T> constructor
InfiniteScroll<T> ({
- Key? key,
- required Widget builder(
- T,
- int index
- required InfiniteController controller,
- String? params,
- Axis axis = Axis.vertical,
- double? width,
- double? height,
- EdgeInsetsGeometry? margin,
- EdgeInsetsGeometry? padding,
- Border? border,
- int? flex,
- Style? style,
- dynamic onTap()?,
- Widget? icon,
- Widget? rearIcon,
- Color? backgroundColor,
- Widget? empty,
- 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});