PdfMargins.inches constructor

PdfMargins.inches({
  1. num? top,
  2. num? bottom,
  3. num? left,
  4. num? right,
})

Implementation

PdfMargins.inches({num? top, num? bottom, num? left, num? right})
    : top = top ?? 0,
      bottom = bottom ?? 0,
      left = left ?? 0,
      right = right ?? 0;