start function

void start(
  1. Iterable<String> _,
  2. SendPort sendPort
)

Implementation

void start(Iterable<String> _, SendPort sendPort) {
  ServerPluginStarter(
    AnalyzerPlugin(resourceProvider: PhysicalResourceProvider.INSTANCE),
  ).start(sendPort);
}