Pullable.builder constructor
const
Pullable.builder({
- Key? key,
- required Widget child,
- required PullableConfig config,
- RefreshController? controller,
- Future<
void> onRefresh()?, - Future<
void> onLoading()?,
Builder constructor for custom configurations
Implementation
const Pullable.builder({
super.key,
required this.child,
required this.config,
this.controller,
this.onRefresh,
this.onLoading,
});