DrawableStyle constructor

const DrawableStyle({
  1. DrawablePaint? stroke,
  2. CircularIntervalList<double>? dashArray,
  3. DashOffset? dashOffset,
  4. DrawablePaint? fill,
  5. DrawableTextStyle? textStyle,
  6. PathFillType? pathFillType,
  7. double? groupOpacity,
  8. List<Path>? clipPath,
  9. DrawableStyleable? mask,
  10. BlendMode? blendMode,
})

Creates a new DrawableStyle.

Implementation

const DrawableStyle({
  this.stroke,
  this.dashArray,
  this.dashOffset,
  this.fill,
  this.textStyle,
  this.pathFillType,
  this.groupOpacity,
  this.clipPath,
  this.mask,
  this.blendMode,
});