| |
| |
| |
| # FuchsiaView constructor |
| |
| |
| |
| |
| *[<Null safety>](https://dart.dev/null-safety)* |
| |
| |
| |
| FuchsiaView({required [FuchsiaViewController](../../package-fuchsia_scenic_flutter_fuchsia_view/FuchsiaViewController-class.md) controller, bool hitTestable = true, bool focusable = true, dynamic viewOcclusionHint = Rect.zero}) |
| |
| |
| <p>Creates a widget that is replaced by content from another process.</p> |
| |
| |
| |
| ## Implementation |
| |
| ```dart |
| FuchsiaView({ |
| required this.controller, |
| this.hitTestable = true, |
| this.focusable = true, |
| this.viewOcclusionHint = Rect.zero, |
| }) : super(key: GlobalObjectKey(controller)); |
| ``` |
| |
| |
| |
| |
| |
| |
| |