Pullable.classicHeader constructor

const Pullable.classicHeader({
  1. Key? key,
  2. required Widget child,
  3. Future<void> onRefresh()?,
  4. ScrollPhysics? physics,
  5. RefreshController? controller,
})

Classic Header constructor

Implementation

const Pullable.classicHeader({
  super.key,
  required this.child,
  this.onRefresh,
  this.physics,
  this.controller,
})  : config = const PullableConfig(headerType: PullableHeaderType.classic),
      headerStyle = "ClassicHeader";