PopUpContainer constructor

const PopUpContainer({
  1. Key? key,
  2. Widget? headingContainer,
  3. required Widget bodyContainer,
  4. required Widget bottomContainer,
  5. double? containerWidth,
  6. double? containerHeght,
  7. double? headingContainerHeight,
  8. double? bottomContainerHeight,
})

Implementation

const PopUpContainer({
  super.key,
  this.headingContainer,
  required this.bodyContainer,
  required this.bottomContainer,
  this.containerWidth,
  this.containerHeght,
  this.headingContainerHeight,
  this.bottomContainerHeight,
});