primaryForeground property

TextModifier get primaryForeground

Applies primary foreground color.

Implementation

TextModifier get primaryForeground => WrappedText(
  style: (context, theme) =>
      TextStyle(color: theme.colorScheme.primaryForeground),
  child: this,
);