VignetteFilter constructor

VignetteFilter({
  1. double strength = 0.35,
  2. double roundness = 1.0,
  3. BufferFalloff? falloff,
})

Implementation

VignetteFilter({
  this.strength = 0.35,
  this.roundness = 1.0,
  BufferFalloff? falloff,
}) : falloff = falloff ?? _defaultVignetteFalloff;