brush property

PdfBrush? brush

Gets the brush of the element

Implementation

PdfBrush? get brush {
  return PdfShapeElementHelper.getHelper(this).brush;
}
void brush=(PdfBrush? value)

Sets the brush of the element

Implementation

set brush(PdfBrush? value) {
  if (value != null) {
    PdfShapeElementHelper.getHelper(this).brush = value;
  }
}