AntdPopupBaseStyle constructor

const AntdPopupBaseStyle({
  1. bool inherit = true,
  2. Color maskColor = const Color(0xff000000),
  3. double maskOpacity = 0.5,
  4. AntdBoxStyle? bodyStyle,
  5. AntdIconStyle? closeIconStyle,
  6. Widget? closeIcon,
})

Implementation

const AntdPopupBaseStyle({
  super.inherit,
  super.maskColor,
  super.maskOpacity,
  this.bodyStyle,
  this.closeIconStyle,
  this.closeIcon,
});