textStyle property

TextStyle get textStyle

Implementation

TextStyle get textStyle => TextStyle(
  inherit: inherit,
  color: color,
  backgroundColor: backgroundColor,
  fontSize: fontSize,
  fontWeight: fontWeight,
  fontStyle: fontStyle,
  letterSpacing: letterSpacing,
  wordSpacing: wordSpacing,
  textBaseline: textBaseline,
  height: height,
  leadingDistribution: leadingDistribution,
  locale: locale,
  foreground: foreground?.paint,
  background: background?.paint,
  shadows: shadows,
  fontFeatures: fontFeatures,
  fontVariations: fontVariations,
  decoration: _getDecoration(),
  decorationColor: decorationColor,
  decorationStyle: decorationStyle,
  decorationThickness: decorationThickness,
  debugLabel: debugLabel,
  fontFamily: fontFamily,
  fontFamilyFallback: fontFamilyFallback,
  package: package,
  overflow: overflow,
);