notifyStarted method

void notifyStarted()

Signals the ApplicationStarted event and blocks until it completes.

Implementation

void notifyStarted() {
  try {
    _executeHandlers(_startedSource);
  } on Exception catch (ex) {
    _logger.applicationError(
      LoggerEventIds.applicationStartupException,
      'An error occurred starting the application',
      ex,
    );
  }
}