Pullable.materialClassicHeader constructor

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

MaterialClassic Header constructor

Implementation

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