blurredBackgroundColor method
Returns a blurred version of the background color usually add some transparency to the color
Implementation
@override
Color blurredBackgroundColor(bool applyBlur, Color color) =>
applyBlur ? color.withValues(alpha: 0.8) : color;