View constructor

View(
  1. {required FlutterView view,
  2. required Widget child}
)

Injects the provided view into the widget tree.

Implementation

View({required this.view, required this.child}) : super(key: GlobalObjectKey(view));