PageFormatOptions constructor

const PageFormatOptions({
  1. PageFormat pageFormat = PageFormat.a4,
  2. double? width,
  3. double? height,
  4. double marginTop = 0.0,
  5. double marginBottom = 0.0,
  6. double marginLeft = 0.0,
  7. double marginRight = 0.0,
  8. double? marginAll,
  9. bool clip = false,
})

Implementation

const PageFormatOptions({
  this.pageFormat = PageFormat.a4,
  this.width,
  this.height,
  this.marginTop = 0.0,
  this.marginBottom = 0.0,
  this.marginLeft = 0.0,
  this.marginRight = 0.0,
  this.marginAll,
  this.clip = false,
});