toTextStyle property

TextStyle get toTextStyle

Implementation

TextStyle get toTextStyle {
  return TextStyle(
    color: color,
    decoration: TextDecoration.combine(decorations),
    fontSize: size,
    shadows: umbra().toBoxShadowDeep,
    fontStyle: style,
    fontWeight: weight,
    backgroundColor: backgroundColor,
    textBaseline: TextBaseline.alphabetic,
  );
}