The render objects of the matching widgets in the widget tree.
- Use renderObject if you only expect to match one render object.
- Use firstRenderObject if you expect to match several but only want the first.
Source
Iterable<RenderObject/*=T*/> renderObjectList/*<T extends RenderObject>*/(Finder finder) { TestAsyncUtils.guardSync(); return finder.evaluate().map/*<T>*/((Element element) { // TODO(ianh): simplify once the VM can infer the return type dynamic/*=T*/ result = element.renderObject; return result; }); }