seaShell property

PdfBrush seaShell

Gets the SeaShell default brush.

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

Implementation

static PdfBrush get seaShell {
  if (_brushes.containsKey(KnownColor.seaShell)) {
    return _brushes[KnownColor.seaShell]!;
  } else {
    return _getBrush(KnownColor.seaShell);
  }
}