getAppBarTitleColor static method
Color
getAppBarTitleColor(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Color getAppBarTitleColor(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.appBarTitleColor ??
style?.appBarTitleColor ??
getStyleByType(
UpConfig.of(context).theme,
colorType,
).appBarTitleColor ??
Theme.of(context).colorScheme.secondary;
}