tableHeader method

TextStyle tableHeader(
  1. BuildContext context,
  2. TypographyEmphasis emphasis
)

Resolves table-header typography using table component tokens.

Implementation

TextStyle tableHeader(BuildContext context, TypographyEmphasis emphasis) =>
    _resolveUnits(
      context,
      tokens.component.table.headerFontSize,
      tokens.component.table.headerLineHeight,
      emphasis,
    );