PdfGridRowStyle constructor

PdfGridRowStyle({
  1. PdfBrush? backgroundBrush,
  2. PdfBrush? textBrush,
  3. PdfPen? textPen,
  4. PdfFont? font,
})

Initializes a new instance of the PdfGridRowStyle class.

Implementation

PdfGridRowStyle(
    {PdfBrush? backgroundBrush,
    PdfBrush? textBrush,
    PdfPen? textPen,
    PdfFont? font}) {
  _initializeRowStyle(backgroundBrush, textBrush, textPen, font);
}