getRadioButtonBorderWidth static method
double
getRadioButtonBorderWidth(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static double getRadioButtonBorderWidth(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.radioButtonBorderWidth ??
style?.radioButtonBorderWidth ??
getStyleByType(UpConfig.of(context).theme, colorType)
.radioButtonBorderWidth ??
UpConstants.kDefaultStyleBorderWidth;
}