fontSizeSectionHeader property

  1. @override
Token get fontSizeSectionHeader

Section header font size (default: 15px, CSS variable: --naki-font-size-section-header).

Implementation

@override
Token get fontSizeSectionHeader => typography?.fontSizeSectionHeader != null
    ? Token(
        value: typography!.fontSizeSectionHeader!.cssText,
        name: super.fontSizeSectionHeader.name,
      )
    : super.fontSizeSectionHeader;