Pullable.builder constructor

const Pullable.builder({
  1. Key? key,
  2. required Widget child,
  3. required PullableConfig config,
  4. RefreshController? controller,
  5. Future<void> onRefresh()?,
  6. 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,
});