AppConnectionState constructor
AppConnectionState({
- ConnectionStatus apiStatus = ConnectionStatus.disconnected,
- String? apiError,
- Map<
String, McpServerState> ? mcpServers, - Map<
String, IdeConnection> ? ideConnections,
Implementation
AppConnectionState({
this.apiStatus = ConnectionStatus.disconnected,
this.apiError,
Map<String, McpServerState>? mcpServers,
Map<String, IdeConnection>? ideConnections,
}) : mcpServers = mcpServers ?? {},
ideConnections = ideConnections ?? {};