MotionBlurScrollable constructor

const MotionBlurScrollable({
  1. Key? key,
  2. required ScrollView child,
  3. TileMode? tileMode,
  4. double intensity = 1,
})

Implementation

const MotionBlurScrollable({
  super.key,
  required this.child,
  this.tileMode,
  this.intensity = 1,
});