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