Pullable constructor
const
Pullable({
- Key? key,
- required Widget child,
- PullableConfig config = const PullableConfig(),
- RefreshController? controller,
- Future<
void> onRefresh()?, - Future<
void> onLoading()?,
Default constructor with full configuration options
Implementation
const Pullable({
super.key,
required this.child,
this.config = const PullableConfig(),
this.controller,
this.onRefresh,
this.onLoading,
});