textStyle property

TextStyle textStyle

Implementation

TextStyle get textStyle {
  return TextStyle(
    color: color,
    fontSize: fontSize,
    fontWeight: fontWeight,
    fontStyle: fontStyle,
    backgroundColor: Colors.transparent,
    decoration: textDecorationPlus?.textDecoration,
    decorationColor: textDecorationPlus?.color,
    decorationStyle: textDecorationPlus?.decorationStyle,
    decorationThickness: textDecorationPlus?.decorationThickness,
    letterSpacing: letterSpacing,
    fontFamily: fontFamily,
    wordSpacing: wordSpacing,
    // height: height,
    shadows: _buildShadows(),
  );
}