OverlayPopupWidget constructor

OverlayPopupWidget({
  1. Key? key,
  2. required double height,
  3. required double width,
  4. required Widget child,
  5. required Offset position,
  6. Duration? duration,
  7. Color? backgroundColor,
})

Implementation

OverlayPopupWidget({Key? key, required this.height, required this.width, required this.child, required this.position, this.duration, this.backgroundColor}) : super(key: key);