fadeOut constant
BloomAnimation
const fadeOut
Fades element opacity from 1 to 0 over 300 milliseconds.
Implementation
static const fadeOut = BloomAnimation(
name: 'bloom-fade-out',
keyframes: [
BloomKeyframe(offset: 0.0, styles: {'opacity': '1'}),
BloomKeyframe(offset: 1.0, styles: {'opacity': '0'}),
],
);