UnsharpMaskingTransformation constructor

const UnsharpMaskingTransformation([
  1. int amount = 100,
  2. int radius = 10
])

Implementation

const UnsharpMaskingTransformation([this.amount = 100, int radius = 10])
    : assert(amount >= -200 && amount <= 100, 'Should be in -200..100 range'),
      super(radius);