BloomEffect constructor

BloomEffect({
  1. double intensity = 0.5,
  2. double threshold = 0.7,
  3. double radius = 20,
  4. bool enabled = true,
})

Implementation

BloomEffect({
  this.intensity = 0.5,
  this.threshold = 0.7,
  this.radius = 20,
  this.enabled = true,
});