Effect constructor

const Effect({
  1. double? sigmaX,
  2. double? sigmaY,
  3. Color? color,
  4. double? alpha,
  5. double? blur,
})

Constructor for creating Effect

Implementation

const Effect({
  this.sigmaX,
  this.sigmaY,
  this.color,
  this.alpha,
  this.blur,
});