start function

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

Implementation

void start(Iterable<String> _, SendPort sendPort) {
  Logger(tag: 'analyzer_plugin_starter').info('Starting Dyzer plugin');

  final plugin =
      AnalyzerPlugin(resourceProvider: PhysicalResourceProvider.INSTANCE);

  ServerPluginStarter(plugin).start(sendPort);
}