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