AntdDialogStyle constructor

const AntdDialogStyle({
  1. bool inherit = true,
  2. AntdBoxStyle? bodyStyle,
  3. AntdIconStyle? closeIconStyle,
  4. Widget? closeIcon,
  5. Color maskColor = const Color(0xff000000),
  6. double maskOpacity = 0.5,
  7. AntdBoxStyle? headerStyle,
  8. AntdBoxStyle? titleStyle,
  9. AntdBoxStyle? contentStyle,
  10. AntdActionStyle? actionStyle,
  11. AntdDialogAnimation? animation,
})

Implementation

const AntdDialogStyle({
  super.inherit,
  super.bodyStyle,
  super.closeIconStyle,
  super.closeIcon,
  super.maskColor,
  super.maskOpacity,
  super.headerStyle,
  super.titleStyle,
  super.contentStyle,
  super.actionStyle,
  this.animation,
});