StdioTransportConfig constructor

const StdioTransportConfig({
  1. required String command,
  2. List<String> arguments = const [],
  3. String? workingDirectory,
  4. Map<String, String>? environment,
})

Implementation

const StdioTransportConfig({
  required this.command,
  this.arguments = const [],
  this.workingDirectory,
  this.environment,
});