PdfXObject constructor
PdfXObject(
- PdfDocument pdfDocument,
- String? subtype, {
- bool isBinary = false,
Implementation
PdfXObject(super.pdfDocument, String? subtype, {super.isBinary})
: super(type: '/XObject') {
if (subtype != null) {
params['/Subtype'] = PdfName(subtype);
}
}