PipenFiller constructor

PipenFiller({
  1. Key? key,
  2. Widget? top,
  3. Widget? bottom,
  4. List<Widget>? topChildren,
  5. List<Widget>? bottomChildren,
})

Implementation

PipenFiller({super.key, this.top, this.bottom, this.topChildren, this.bottomChildren}) {
  assert(top != null || topChildren != null);
  assert(bottom != null || bottom != null);
}