lightCyan property

PdfPen lightCyan

Gets the LightCyan default pen.

//Create a new PDF document.
PdfDocument doc = PdfDocument();
//Draw rectangle.
doc.pages
    .add()
    .graphics
    .drawRectangle(pen: PdfPens.lightCyan,
    bounds: Rect.fromLTWH(0, 0, 200, 100));
//Save the document.
List<int> bytes = doc.save();
//Dispose the document.
doc.dispose();

Implementation

static PdfPen get lightCyan {
  if (_pens.containsKey(KnownColor.lightCyan)) {
    return _pens[KnownColor.lightCyan]!;
  } else {
    return _getPen(KnownColor.lightCyan);
  }
}