blurX method

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

Applies a BlurEffect to only the horizontal axis of this widget with given blurX value.

Implementation

Widget blurX(double blurX, {double? from}) {
  return EffectWidget(
    start: from == null ? null : BlurEffect(blurX: from),
    end: BlurEffect(blurX: blurX),
    child: this,
  );
}