getDefaultStyle method
AntdRadioStyle
getDefaultStyle(
- BuildContext context,
- AntdTheme theme,
- 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,
);
}