invoiceInfoMedium static method

TextStyle invoiceInfoMedium(
  1. Font font, {
  2. double fontSize = 16,
})

Implementation

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