create static method

Future<SseAuthClientTransport> create({
  1. required String serverUrl,
  2. Map<String, String>? headers,
  3. OAuthToken? oauthToken,
  4. OAuthClient? oauthClient,
  5. String? bearerToken,
})

Always throws on this platform.

Implementation

static Future<SseAuthClientTransport> create({
  required String serverUrl,
  Map<String, String>? headers,
  OAuthToken? oauthToken,
  OAuthClient? oauthClient,
  String? bearerToken,
}) async {
  throw McpError(_unsupported);
}