Effect constructor

Effect({
  1. EffectType? type,
  2. required bool visible,
  3. num? radius,
  4. num? spread,
  5. Color? color,
  6. BlendMode? blendMode,
  7. Vector2D? offset,
  8. bool? showShadowBehindNode,
})

Implementation

Effect({
  this.type,
  required this.visible,
  this.radius,
  this.spread,
  this.color,
  this.blendMode,
  this.offset,
  this.showShadowBehindNode,
});