fillPath method
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);
}