render method
Renders this element subtree to a terminal string.
Implementation
String render({BoxConstraints? constraints}) {
if (_dirty) {
_owner?.buildScopeFor(_rootOfTree(this), this);
}
return _viewToString(widget.view());
}
Renders this element subtree to a terminal string.
String render({BoxConstraints? constraints}) {
if (_dirty) {
_owner?.buildScopeFor(_rootOfTree(this), this);
}
return _viewToString(widget.view());
}