AntdCascaderStyle constructor

const AntdCascaderStyle({
  1. bool inherit = true,
  2. Color maskColor = const Color(0xff000000),
  3. double maskOpacity = 0.5,
  4. AntdBoxStyle? bodyStyle,
  5. AntdIconStyle? closeIconStyle,
  6. Widget? closeIcon,
  7. AntdBoxStyle? headerStyle,
  8. AntdBoxStyle? titleStyle,
  9. AntdBoxStyle? cancelStyle,
  10. AntdBoxStyle? confirmStyle,
  11. AntdFlexStyle? headerFlexStyle,
  12. AntdCascaderAnimation? animation,
})

Implementation

const AntdCascaderStyle({
  super.inherit,
  super.maskColor,
  super.maskOpacity,
  super.bodyStyle,
  super.closeIconStyle,
  super.closeIcon,
  this.headerStyle,
  this.titleStyle,
  this.cancelStyle,
  this.confirmStyle,
  this.headerFlexStyle,
  this.animation,
});