PdfXref constructor

const PdfXref(
  1. int ser,
  2. int offset, {
  3. int gen = 0,
  4. int? object,
  5. PdfCrossRefEntryType type = PdfCrossRefEntryType.inUse,
})

Creates a cross-reference for a Pdf Object

Implementation

const PdfXref(
  int ser,
  this.offset, {
  int gen = 0,
  this.object,
  this.type = PdfCrossRefEntryType.inUse,
}) : super(ser, gen);