getDefaultStyle method

  1. @override
AntdRadioStyle getDefaultStyle(
  1. BuildContext context,
  2. AntdTheme theme,
  3. AntdMapToken token
)
override

Implementation

@override
AntdRadioStyle getDefaultStyle(
    BuildContext context, AntdTheme theme, AntdMapToken token) {
  var checkBoxStyle = AntdCheckboxStyle.defaultStyle(token);
  return AntdRadioStyle(
    bodyStyle: checkBoxStyle.bodyStyle,
    indeterminateStyle: checkBoxStyle.indeterminateStyle,
    extraStyle: checkBoxStyle.extraStyle,
    activeIconStyle: checkBoxStyle.activeIconStyle,
    activeIcon: checkBoxStyle.activeIcon,
    iconStyle: checkBoxStyle.iconStyle,
    icon: checkBoxStyle.icon,
    disableIconStyle: checkBoxStyle.disableIconStyle,
    disableIcon: checkBoxStyle.disableIcon,
    rowStyle: checkBoxStyle.rowStyle,
  );
}