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