start method
Implementation
@override
Future<void> start(
DarwinSystemGeneratedArgs generated, DarwinSystemUserArgs user) async {
enableLogging();
logger.info("Starting darwin application...");
var stopwatch = Stopwatch();
stopwatch.start();
await prepareAndStartServices(this, generated, user);
await runLateStartup(this);
stopwatch.stop();
logger.info(
"Started darwin application in ${stopwatch.elapsedMilliseconds}ms!");
}