BlurTransformation constructor

const BlurTransformation([
  1. int? value = 10
])

Implementation

const BlurTransformation([super.value = 10])
    : assert(value != null ? value >= 0 && value <= 5000 : true,
          'Should be in 0..5000 range');