render method
Renders this element subtree to a terminal string.
Implementation
@override
String render({BoxConstraints? constraints}) {
ensureBuilt();
if (children.isEmpty) return '';
return children.first.render(constraints: constraints);
}
Renders this element subtree to a terminal string.
@override
String render({BoxConstraints? constraints}) {
ensureBuilt();
if (children.isEmpty) return '';
return children.first.render(constraints: constraints);
}