SseClient constructor

SseClient({
  1. required Uri serverUri,
  2. Client? httpClient,
  3. String? clientId,
})

Creates a new SseClient connected to the server at serverUri.

Implementation

factory SseClient({
  required Uri serverUri,
  http.Client? httpClient,
  String? clientId,
}) = SseClientPlatform;