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(UpConfig.of(context).theme, colorType)
          .dropdownBorderWidth ??
      UpConstants.kDefaultStyleBorderWidth;
}