build method
Describes the part of the UI represented by this widget.
Implementation
@override
Widget build(BuildContext context) {
final resolvedStyle =
style ?? Style().foreground(ThemeScope.of(context).border);
final line = List.generate(height, (_) => char).join('\n');
return Text(line, style: resolvedStyle);
}