connectIde method
Implementation
void connectIde(String name, String type, {String? workspacePath, int? pid}) {
connection.addIdeConnection(
name,
IdeConnection(
name: name,
type: type,
status: ConnectionStatus.connected,
workspacePath: workspacePath,
pid: pid,
),
);
}