SVGRenderer constructor

SVGRenderer({
  1. dynamic quality = SVGQuality.high,
  2. required double width,
  3. required double height,
  4. bool autoClear = false,
  5. int? precision,
  6. double overdraw = 0.5,
  7. bool edgeOnly = false,
})

Implementation

SVGRenderer(
    {quality = SVGQuality.high,
    required this.width,
    required this.height,
    this.autoClear = false,
    this.precision,
    this.overdraw = 0.5,
    this.edgeOnly = false}) {
  setSize(width, height);
}