invoiceInfoLarge static method

TextStyle invoiceInfoLarge(
  1. Font font, {
  2. double fontSize = 24,
})

Implementation

static pw.TextStyle invoiceInfoLarge(pw.Font font, {double fontSize = 24}) {
  return pw.TextStyle(
    font: font,
    fontSize: fontSize,
    fontWeight: pw.FontWeight.bold,
  );
}