PopupLayout constructor

PopupLayout({
  1. Key? key,
  2. Color? bgColor,
  3. required Widget child,
  4. bool transition = true,
  5. double opacity = 0.09,
  6. double? top,
  7. double? bottom,
  8. double? left,
  9. double? right,
  10. double? height,
  11. double? width,
})

Implementation

PopupLayout(
    {Key? key,
    this.bgColor,
    required this.child,
    this.transition = true,
    this.opacity = 0.09,
    this.top,
    this.bottom,
    this.left,
    this.right,
    this.height,
    this.width});