make method
Builds the Flutter Text widget.
Implementation
Text make() => Text(
data ?? '',
style: _style,
textAlign: _align,
maxLines: _maxLines,
overflow: _overflow,
textScaler: _textScaler,
strutStyle: strutStyle,
textDirection: textDirection,
locale: locale,
softWrap: softWrap,
semanticsLabel: semanticsLabel,
semanticsIdentifier: semanticsIdentifier,
textWidthBasis: textWidthBasis,
textHeightBehavior: textHeightBehavior,
selectionColor: selectionColor,
);