PdfStitchingFunction constructor

PdfStitchingFunction(
  1. PdfDocument pdfDocument, {
  2. required List<PdfFunction> functions,
  3. required List<double> bounds,
  4. double domainStart = 0,
  5. double domainEnd = 1,
})

Implementation

PdfStitchingFunction(
  PdfDocument pdfDocument, {
  required this.functions,
  required this.bounds,
  this.domainStart = 0,
  this.domainEnd = 1,
}) : super(pdfDocument);