make method

Text make()

Implementation

Text make() {
  return Text(
    _data ?? '',
    style: _style,
    strutStyle: _strutStyle,
    textAlign: _textAlign,
    textDirection: _textDirection,
    locale: _locale,
    softWrap: _softWrap,
    textScaler: _textScaler,
    maxLines: _maxLines,
    semanticsLabel: _semanticsLabel,
    textWidthBasis: _textWidthBasis,
    textHeightBehavior: _textHeightBehavior,
    selectionColor: _selectionColor,
  );
}