CustomFooter constructor

const CustomFooter({
  1. Key? key,
  2. double height = 60.0,
  3. ModeChangeCallBack? onModeChange,
  4. OffsetCallBack? onOffsetChange,
  5. VoidFutureCallBack? readyLoading,
  6. VoidFutureCallBack? endLoading,
  7. LoadStyle loadStyle = LoadStyle.ShowAlways,
  8. required FooterBuilder builder,
  9. Function? onClick,
})

Implementation

const CustomFooter({
  Key? key,
  double height: 60.0,
  this.onModeChange,
  this.onOffsetChange,
  this.readyLoading,
  this.endLoading,
  LoadStyle loadStyle: LoadStyle.ShowAlways,
  required this.builder,
  Function? onClick,
}) : super(
          key: key,
          onClick: onClick as void Function()?,
          loadStyle: loadStyle,
          height: height);