DrawablePaint constructor

const DrawablePaint(
  1. PaintingStyle? style, {
  2. Color? color,
  3. Shader? shader,
  4. BlendMode? blendMode,
  5. ColorFilter? colorFilter,
  6. bool? isAntiAlias,
  7. FilterQuality? filterQuality,
  8. MaskFilter? maskFilter,
  9. StrokeCap? strokeCap,
  10. StrokeJoin? strokeJoin,
  11. double? strokeMiterLimit,
  12. double? strokeWidth,
})

Creates a new DrawablePaint object.

Implementation

const DrawablePaint(
  this.style, {
  this.color,
  this.shader,
  this.blendMode,
  this.colorFilter,
  this.isAntiAlias,
  this.filterQuality,
  this.maskFilter,
  this.strokeCap,
  this.strokeJoin,
  this.strokeMiterLimit,
  this.strokeWidth,
});