AntdCheckboxStyle constructor

const AntdCheckboxStyle({
  1. bool inherit = true,
  2. AntdBoxStyle? bodyStyle,
  3. AntdBoxStyle? indeterminateStyle,
  4. AntdBoxStyle? extraStyle,
  5. AntdIconStyle? activeIconStyle,
  6. Widget? activeIcon,
  7. AntdIconStyle? iconStyle,
  8. Widget? icon,
  9. AntdIconStyle? disableIconStyle,
  10. Widget? disableIcon,
  11. AntdFlexStyle? rowStyle,
})

创建复选框样式配置

Implementation

const AntdCheckboxStyle(
    {super.inherit,
    this.bodyStyle,
    this.indeterminateStyle,
    this.extraStyle,
    this.activeIconStyle,
    this.activeIcon,
    this.iconStyle,
    this.icon,
    this.disableIconStyle,
    this.disableIcon,
    this.rowStyle});