PipenSliver constructor

const PipenSliver({
  1. Key? key,
  2. double? spacing,
  3. ScrollPhysics? physics,
  4. ScrollController? controller,
  5. EdgeInsets? padding,
  6. required List<PipenSlivers> slivers,
})

Implementation

const PipenSliver({
  super.key,
  this.spacing,
  this.physics,
  this.controller,
  EdgeInsets? padding,
  required this.slivers,
}) : padding = padding ?? EdgeInsets.zero;