start method

  1. @mustCallSuper
void start()

Call this method to trigger onStart lifecycle event

Implementation

@mustCallSuper
void start() {
  if (!_isStartCalled) {
    _isStartCalled = true;
    onStart();
  }
}