componentDidMount method
ReactJS lifecycle method that is invoked once, only on the client (not on the server), immediately after the initial rendering occurs.
At this point in the lifecycle, you can access any refs to the children of the root node.
The componentDidMount method of child Component
s is invoked before that of parent Component
.
See: reactjs.org/docs/react-component.html#mounting-componentdidmount
Implementation
@override
void componentDidMount() {
_isMounted = true;
}