create static method

Future<SseClientTransport> create({
  1. required String serverUrl,
  2. Map<String, String>? headers,
})

Always throws on this platform.

Implementation

static Future<SseClientTransport> create({
  required String serverUrl,
  Map<String, String>? headers,
}) async {
  throw McpError('Legacy SSE transport: $_unsupported');
}