PopWindowWidget constructor
const
PopWindowWidget({
- Key? key,
- EdgeInsetsGeometry? padding,
- EdgeInsetsGeometry? margin,
- required Widget child,
- required dynamic buildCall(
- PopWidgetController controller
- Offset? arrowOffset,
- double verticalMargin = 0,
- bool? disable,
Implementation
const PopWindowWidget({
Key? key,
this.padding,
this.margin,
required this.child,
required this.buildCall,
this.arrowOffset,
this.verticalMargin = 0,
this.disable,
required this.menuBuilder,
}) : super(key: key);