render method

String render({
  1. BoxConstraints? constraints,
})

Renders this element subtree to a terminal string.

Implementation

String render({BoxConstraints? constraints}) {
  if (_dirty) {
    _owner?.buildScopeFor(_rootOfTree(this), this);
  }
  return _viewToString(widget.view());
}