unmount method
Implementation
@override
void unmount() {
// Unmount the rendered content if any
if (_renderedNode != null) {
_renderedNode!.unmount();
_renderedNode = null;
}
// Component lifecycle method
componentWillUnmount();
}
@override
void unmount() {
// Unmount the rendered content if any
if (_renderedNode != null) {
_renderedNode!.unmount();
_renderedNode = null;
}
// Component lifecycle method
componentWillUnmount();
}