MenuPopup constructor

const MenuPopup({
  1. Key? key,
  2. double? surfaceOpacity,
  3. double? surfaceBlur,
  4. EdgeInsetsGeometry? padding,
  5. Color? fillColor,
  6. Color? borderColor,
  7. BorderRadiusGeometry? borderRadius,
  8. required List<Widget> children,
})

Implementation

const MenuPopup({
  super.key,
  this.surfaceOpacity,
  this.surfaceBlur,
  this.padding,
  this.fillColor,
  this.borderColor,
  this.borderRadius,
  required this.children,
});