AntdDropdownStyle constructor

const AntdDropdownStyle({
  1. bool inherit = true,
  2. Color maskColor = const Color(0xff000000),
  3. double maskOpacity = 0.5,
  4. AntdBoxStyle? bodyStyle,
  5. AntdFlexStyle? childRowStyle,
  6. AntdBoxStyle? childStyle,
  7. AntdBoxStyle? itemStyle,
  8. AntdBoxStyle? extraStyle,
  9. AntdIconStyle? iconStyle,
  10. Widget? icon,
  11. AntdIconStyle? activeIconStyle,
  12. Widget? activeIcon,
  13. AntdDropdownAnimation? animation,
})

Implementation

const AntdDropdownStyle(
    {super.inherit,
    super.maskColor,
    super.maskOpacity,
    this.bodyStyle,
    this.childRowStyle,
    this.childStyle,
    this.itemStyle,
    this.extraStyle,
    this.iconStyle,
    this.icon,
    this.activeIconStyle,
    this.activeIcon,
    this.animation});