blurY method
Applies a BlurEffect to only the vertical axis of this widget with
given blurY
value.
Implementation
Widget blurY(double blurY, {double? from}) {
return EffectWidget(
start: from == null ? null : BlurEffect(blurY: from),
end: BlurEffect(blurY: blurY),
child: this,
);
}