PdfDictStream constructor

PdfDictStream({
  1. Map<String, PdfDataType>? values,
  2. Uint8List? data,
  3. bool isBinary = false,
  4. bool encrypt = true,
  5. bool compress = true,
})

Implementation

PdfDictStream({
  Map<String, PdfDataType>? values,
  Uint8List? data,
  this.isBinary = false,
  this.encrypt = true,
  this.compress = true,
})  : data = data ?? Uint8List(0),
      super.values(values ?? {});