blob: 81f092876ba51ca59cae8c29aa2899b9c118dc57 [file] [log] [blame] [view]
# dispose method
*[<Null safety>](https://dart.dev/null-safety)*
- @override
Future&lt;void> dispose
()
<p>Dispose relevant resources when the view is take <code>OffStage</code> by Flutter.</p>
<p>There are currently no resources that need to be released when the
<code>PlatformView</code> is taken <code>Offstage</code> because the underlying Fuchsia view
owner is still alive and the view can be bought back on stage.</p>
## Implementation
```dart
@override
Future<void> dispose() async {}
```