getCheckboxBorderRadius static method
double
getCheckboxBorderRadius(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static double getCheckboxBorderRadius(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.checkboxBorderRadius ??
style?.checkboxBorderRadius ??
getStyleByType(
(FlutterUpConfig.of(context)?.theme ??
UpConstants.kDefaultTheme),
colorType)
.checkboxBorderRadius ??
UpConstants.kDefaultStyleBorderRadius;
}