PopupContainer constructor

PopupContainer({
  1. required dynamic size,
  2. double? left,
  3. double? top,
  4. double? right,
  5. double? bottom,
  6. Alignment? alignment,
})

Implementation

PopupContainer({
  required size,
  this.left,
  this.top,
  this.right,
  this.bottom,
  this.alignment,
})  : width = size.x,
      height = size.y;