Pullable.builder constructor

const Pullable.builder({
  1. Key? key,
  2. required Widget child,
  3. required PullableConfig config,
  4. RefreshController? controller,
})

Builder constructor for custom configurations

Implementation

const Pullable.builder({
  super.key,
  required this.child,
  required this.config,
  this.controller,
})  : onRefresh = null,
      headerStyle = null,
      physics = null;