RenderObjectToWidgetAdapter<T extends RenderObject> constructor
Null safety
- {Widget? child,
- required RenderObjectWithChildMixin<
T> container, - String? debugShortDescription}
Creates a bridge from a RenderObject to an Element tree.
Used by WidgetsBinding to attach the root widget to the RenderView.
Implementation
RenderObjectToWidgetAdapter({
this.child,
required this.container,
this.debugShortDescription,
}) : super(key: GlobalObjectKey(container));