start function

void start(
  1. List<String> args,
  2. SendPort sendPort
)

Implementation

void start(List<String> args, SendPort sendPort) {
  runZonedGuarded(
    () {
      ServerPluginStarter(PTIntlPlugin(PhysicalResourceProvider.INSTANCE)).start(sendPort);
    },
    (Object e, StackTrace stackTrace) {
      // mirrorLog.info(e.toString());
      // mirrorLog.info(stackTrace);
    },
  );
}