invoiceInfoSmallWhite static method
Implementation
static pw.TextStyle invoiceInfoSmallWhite(
pw.Font font, {
double fontSize = 12,
}) {
return pw.TextStyle(
font: font,
fontSize: fontSize,
fontWeight: pw.FontWeight.normal,
color: PdfColors.white, // Set text color to white
);
}