| # dispose method | |
| *[<Null safety>](https://dart.dev/null-safety)* | |
| - @override | |
| Future<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 {} | |
| ``` | |