AntdPopoverStyle constructor

const AntdPopoverStyle({
  1. bool inherit = true,
  2. Color maskColor = const Color(0xff000000),
  3. double maskOpacity = 0.5,
  4. AntdBoxStyle? childStyle,
  5. AntdPopoverActionStyle? actionStyle,
  6. AntdFlexStyle? actionColumnStyle,
  7. AntdPopoverBoxStyle? popoverBoxStyle,
  8. AntdPopoverAnimation? animation,
})

创建弹出框样式配置

Implementation

const AntdPopoverStyle({
  super.inherit,
  super.maskColor,
  super.maskOpacity,
  this.childStyle,
  this.actionStyle,
  this.actionColumnStyle,
  this.popoverBoxStyle,
  this.animation,
});