PdfPaddings constructor

PdfPaddings({
  1. double? left,
  2. double? right,
  3. double? top,
  4. double? bottom,
})

Initializes a new instance of the PdfPaddings class.

Implementation

PdfPaddings({double? left, double? right, double? top, double? bottom}) {
  _initialize(left, right, top, bottom);
}