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