CustomFooter constructor
const
CustomFooter({
- Key? key,
- double height = 60.0,
- ModeChangeCallBack? onModeChange,
- OffsetCallBack? onOffsetChange,
- VoidFutureCallBack? readyLoading,
- VoidFutureCallBack? endLoading,
- LoadStyle loadStyle = LoadStyle.ShowAlways,
- required FooterBuilder builder,
- 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);