tableContent static method

TextStyle tableContent(
  1. Font font, {
  2. double fontSize = 10,
})

Implementation

static pw.TextStyle tableContent(pw.Font font, {double fontSize = 10}) {
  return pw.TextStyle(
    font: font,
    fontSize: fontSize,
    fontWeight: pw.FontWeight.normal,
    color: PdfColors.black,
  );
}