textStyle property

TextStyle textStyle

Implementation

TextStyle get textStyle {
  return TextStyle(
    color: textColor,
    fontSize: textSize,
    fontStyle: fontStyle,
    fontWeight: fontWeight,
    backgroundColor: textBackground,
    decoration: textDecoration,
    decorationColor: textDecorationColor,
    decorationThickness: textDecorationThickness,
    textBaseline: textBaseline,
    overflow: textOverflow,
  );
}