getDefaultFont method
Get the default font of this graphic object
Implementation
PdfFont? getDefaultFont() {
if (pdfDocument.fonts.isEmpty) {
PdfFont.helvetica(pdfDocument);
}
return pdfDocument.fonts.elementAt(0);
}
Get the default font of this graphic object
PdfFont? getDefaultFont() {
if (pdfDocument.fonts.isEmpty) {
PdfFont.helvetica(pdfDocument);
}
return pdfDocument.fonts.elementAt(0);
}