Pullable.materialClassicHeader constructor

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

MaterialClassic Header constructor

Implementation

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