cellPadding property

PdfPaddings? cellPadding

Gets the cell padding.

Implementation

PdfPaddings? get cellPadding {
  _cellPadding ??= _gridCellPadding;
  return _cellPadding;
}
void cellPadding=(PdfPaddings? value)

Sets the cell padding.

Implementation

set cellPadding(PdfPaddings? value) {
  _cellPadding = value;
}