getExpansionTileIconColor static method
Color
getExpansionTileIconColor(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Color getExpansionTileIconColor(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.expansionTileIconColor ??
style?.expansionTileIconColor ??
getStyleByType(UpConfig.of(context).theme, colorType)
.expansionTileIconColor ??
Theme.of(context).primaryColor;
}