PipenScrollView constructor

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

Implementation

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