PdfFunction constructor

PdfFunction(
  1. PdfDocument pdfDocument, {
  2. List<int>? data,
  3. int bitsPerSample = 8,
  4. int order = 1,
  5. List<num> domain = const <num>[0, 1],
  6. List<num> range = const <num>[0, 1],
})

Implementation

PdfFunction(
  PdfDocument pdfDocument, {
  this.data,
  this.bitsPerSample = 8,
  this.order = 1,
  this.domain = const <num>[0, 1],
  this.range = const <num>[0, 1],
}) : super(pdfDocument);