make method
Implementation
TextSpan make() {
return TextSpan(
text: _text,
style: _style,
children: _children?.map((e) => e.make()).toList(),
recognizer: _recognizer,
onEnter: _onEnter,
onExit: _onExit,
semanticsLabel: _semanticsLabel,
locale: _locale,
spellOut: _spellOut,
);
}