SvgLinearGradient constructor

const SvgLinearGradient(
  1. GradientUnits? gradientUnits,
  2. double? x1,
  3. double? y1,
  4. double? x2,
  5. double? y2,
  6. SvgTransform transform,
  7. List<PdfColor?> colors,
  8. List<double> stops,
  9. List<double> opacityList,
)

Implementation

const SvgLinearGradient(
    GradientUnits? gradientUnits,
    this.x1,
    this.y1,
    this.x2,
    this.y2,
    SvgTransform transform,
    List<PdfColor?> colors,
    List<double> stops,
    List<double> opacityList)
    : super(gradientUnits, transform, colors, stops, opacityList);