getDropdownFilledColor static method
Color
getDropdownFilledColor(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Color getDropdownFilledColor(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.dropdownFilledColor ??
style?.dropdownFilledColor ??
getStyleByType(
UpConfig.of(context).theme,
colorType,
).dropdownFilledColor ??
Colors.transparent;
}