fontWeightBold property

  1. @override
Token get fontWeightBold

Bold font weight (default: 700, CSS variable: --naki-font-weight-bold).

Implementation

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