ClassicalFooterWidget constructor

ClassicalFooterWidget({
  1. Key? key,
  2. required LoadMode loadState,
  3. required ClassicalFooter classicalFooter,
  4. required double pulledExtent,
  5. required double loadTriggerPullDistance,
  6. required double loadIndicatorExtent,
  7. required AxisDirection axisDirection,
  8. required bool float,
  9. Duration? completeDuration,
  10. double lineWidth = 100,
  11. required bool enableInfiniteLoad,
  12. required bool success,
  13. required bool noMore,
  14. Widget? childWidget,
})

Implementation

ClassicalFooterWidget({Key? key,
  required this.loadState,
  required this.classicalFooter,
  required this.pulledExtent,
  required this.loadTriggerPullDistance,
  required this.loadIndicatorExtent,
  required this.axisDirection,
  required this.float,
  this.completeDuration,
  this.lineWidth = 100,
  required this.enableInfiniteLoad,
  required this.success,
  required this.noMore,
  this.childWidget})
    : super(key: key);