build method
Implementation
@override
Widget build(BuildContext context) {
TipMessage? t = _tip;
if (t != null && t.message.isNotEmpty) {
return t.message.text(
color: t.level.textColor(context),
align: _align,
style: _style,
mono: _mono,
fontSize: _fontSize,
maxLines: _maxLines,
weight: _weight,
softWrap: _softWrap,
overflow: _overflow,
locale: _locale,
);
}
return "".text();
}