Paint constructor

Paint({
  1. PaintType? type,
  2. required bool visible,
  3. double? opacity,
  4. Color? color,
  5. BlendMode? blendMode,
  6. List<Vector2D>? gradientHandlePositions,
  7. List<ColorStop>? gradientStops,
  8. ScaleMode? scaleMode,
  9. List<List<num>>? imageTransform,
  10. num? scalingFactor,
  11. String? imageRef,
  12. String? gifRef,
})

Implementation

Paint({
  this.type,
  required this.visible,
  this.opacity,
  this.color,
  this.blendMode,
  this.gradientHandlePositions,
  this.gradientStops,
  this.scaleMode,
  this.imageTransform,
  this.scalingFactor,
  this.imageRef,
  this.gifRef,
});