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