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