dispose method
Frees all the resources associated with this object.
This marks the object as no longer usable and will make all methods/properties besides mounted inaccessible.
Implementation
@override
void dispose() {
final camera = state.value;
if (camera != null) {
camera.dispose();
}
super.dispose();
}