blurredBackgroundColor method

  1. @override
Color blurredBackgroundColor(
  1. bool applyBlur,
  2. Color color
)
override

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;