start static method
Implementation
static Future<LspStdioConfig> start({
required String executable,
required String filePath,
required String workspacePath,
required String languageId,
List<String>? args,
Map<String, String>? environment,
bool disableWarning = false,
bool disableError = false,
}) async {
final config = LspStdioConfig._(
executable: executable,
filePath: filePath,
languageId: languageId,
workspacePath: workspacePath,
args: args,
environment: environment,
disableWarning: disableWarning,
disableError: disableError,
);
await config._startProcess();
return config;
}