make method

TextStyle make()

Implementation

TextStyle make() {
  var weight = _fontWeight ?? FontWeight.normal;
  return TextStyle(
    fontSize: _fontSize,
    fontWeight: weight,
    fontStyle: _fontStyle,
    fontFamily: _fontFamily,
    color: _color,
    backgroundColor: _backgroundColor,
    letterSpacing: _letterSpacing,
    wordSpacing: _wordSpacing,
    textBaseline: _textBaseline,
    height: _height,
    locale: _locale,
    decoration: _decoration,
    decorationColor: _decorationColor,
    decorationStyle: _decorationStyle,
    decorationThickness: _decorationThickness,
  );
}