init method
Implementation
@mustCallSuper
void init() {
if (_state != LifecycleState.created) return;
_state = LifecycleState.initialized;
onInit();
}
@mustCallSuper
void init() {
if (_state != LifecycleState.created) return;
_state = LifecycleState.initialized;
onInit();
}