fillPath method

  1. @override
void fillPath(
  1. PdfPath path,
  2. PdfColor color,
  3. PdfFillRule rule,
  4. double alpha,
)
override

Implementation

@override
void fillPath(PdfPath path, PdfColor color, PdfFillRule rule, double alpha) {
  if (!stripsActive || delegateFills || _fillOverprint) {
    _delegatePaint(() => delegateFillPath(path, color, rule, alpha));
    return;
  }
  if (!binningEnabled) return;
  generator.fillPath(path, pageToDevice, rule, stripArgbColor(color, alpha),
      tolerance: stripFlattenTolerance);
}