blob: 2b8f64819a39c01a19438fe4370e614650ac771d [file] [log] [blame] [view]
# 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));
```