maroon property
PdfPen
get
maroon
Gets the Maroon default pen.
//Create a new PDF document.
PdfDocument doc = PdfDocument();
//Draw rectangle.
doc.pages
.add()
.graphics
.drawRectangle(pen: PdfPens.maroon,
bounds: Rect.fromLTWH(0, 0, 200, 100));
//Save the document.
List<int> bytes = doc.save();
//Dispose the document.
doc.dispose();
Implementation
static PdfPen get maroon {
if (_pens.containsKey(KnownColor.maroon)) {
return _pens[KnownColor.maroon]!;
} else {
return _getPen(KnownColor.maroon);
}
}