init method
Call this method to trigger onInit lifecycle event
Implementation
@mustCallSuper
void init() {
if (!_isInitCalled) {
_isInitCalled = true;
onInit();
}
}
Call this method to trigger onInit lifecycle event
@mustCallSuper
void init() {
if (!_isInitCalled) {
_isInitCalled = true;
onInit();
}
}