valueLabels static method

TextStyle valueLabels(
  1. Font font, {
  2. double fontSize = 14,
})

Implementation

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