PipenFiller constructor

const PipenFiller({
  1. Key? key,
  2. ScrollPhysics? physics,
  3. EdgeInsets? padding,
  4. ScrollController? controller,
  5. required FillerArea top,
  6. required FillerArea bottom,
})

Implementation

const PipenFiller({
  super.key,
  this.physics,
  this.padding,
  this.controller,
  required this.top,
  required this.bottom,
});