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