create static method

Future<SseCompressedClientTransport> create({
  1. required String serverUrl,
  2. Map<String, String>? headers,
  3. List<CompressionType>? supportedCompressions,
  4. int compressionThreshold = 1024,
})

Always throws on this platform.

Implementation

static Future<SseCompressedClientTransport> create({
  required String serverUrl,
  Map<String, String>? headers,
  List<CompressionType>? supportedCompressions,
  int compressionThreshold = 1024,
}) async {
  throw McpError(_unsupported);
}