draw method
PdfLayoutResult?
draw({
- PdfGraphics? graphics,
- PdfPage? page,
- Rect? bounds,
- PdfLayoutFormat? format,
Draws an element on the graphics or page.
If both graphics and page provide in the arguments then page takes more precedence than graphics
Implementation
PdfLayoutResult? draw(
{PdfGraphics? graphics,
PdfPage? page,
Rect? bounds,
PdfLayoutFormat? format}) {
return _draw(graphics, page, bounds, format);
}