Layer constructor

Layer({
  1. Color? color,
  2. List<Color>? gradient,
  3. MaskFilter? blur,
  4. Path? path,
  5. double? amplitude,
  6. double? phase,
})

Implementation

Layer({
  this.color,
  this.gradient,
  this.blur,
  this.path,
  this.amplitude,
  this.phase,
});