SvgRadialGradient constructor

const SvgRadialGradient(
  1. GradientUnits? gradientUnits,
  2. double? r,
  3. double? cx,
  4. double? cy,
  5. double? fr,
  6. double? fx,
  7. double? fy,
  8. SvgTransform transform,
  9. List<PdfColor?> colors,
  10. List<double> stops,
  11. List<double> opacityList,
)

Implementation

const SvgRadialGradient(
  GradientUnits? gradientUnits,
  this.r,
  this.cx,
  this.cy,
  this.fr,
  this.fx,
  this.fy,
  SvgTransform transform,
  List<PdfColor?> colors,
  List<double> stops,
  List<double> opacityList,
) : super(gradientUnits, transform, colors, stops, opacityList);