PopUp<T> constructor

const PopUp<T>({
  1. Key? key,
  2. required Widget child,
  3. required WidgetBuilder content,
  4. double contentHeight = 0,
  5. double? contentWidth,
  6. bool? below,
  7. double verticalOffset = 0,
})

Implementation

const PopUp({
  Key? key,
  required this.child,
  required this.content,
  this.contentHeight = 0,
  this.contentWidth,
  this.below,
  this.verticalOffset = 0,
}) : super(key: key);