start method
Call this method to trigger onStart lifecycle event
Implementation
@mustCallSuper
void start() {
if (!_isStartCalled) {
_isStartCalled = true;
onStart();
}
}
Call this method to trigger onStart lifecycle event
@mustCallSuper
void start() {
if (!_isStartCalled) {
_isStartCalled = true;
onStart();
}
}