PipenScrollView constructor

PipenScrollView({
  1. Key? key,
  2. Widget? child,
  3. double? spacing,
  4. ScrollPhysics? physics,
  5. List<Widget>? children,
  6. ScrollController? controller,
  7. Axis? scrollDirection,
  8. bool bottomSafeArea = false,
  9. EdgeInsets padding = EdgeInsets.zero,
})

Implementation

PipenScrollView({
  super.key,
  this.child,
  this.spacing,
  this.physics,
  this.children,
  this.controller,
  this.scrollDirection,
  this.bottomSafeArea = false,
  this.padding = EdgeInsets.zero,
}) {
  assert(children != null || child != null);
}