getHeaderStyle method

TextStyle getHeaderStyle(
  1. ColorScheme colors
)

Returns the PDF header text style.

Implementation

TextStyle getHeaderStyle(ColorScheme colors) {
  return headerStyle ?? TextStyle(fontWeight: FontWeight.bold, fontSize: 10, color: colors.onSurfaceVariant.toPdfColor());
}