getAppBarBottomOpacity static method
double
getAppBarBottomOpacity(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static double getAppBarBottomOpacity(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.appBarBottomOpacity ??
style?.appBarBottomOpacity ??
getStyleByType(
UpConfig.of(context).theme,
colorType,
).appBarBottomOpacity ??
1.0;
}