blurY method

Widget blurY(
  1. double blurY, {
  2. double? from,
})

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,
  );
}