ServiceEndpoints.custom constructor

ServiceEndpoints.custom({
  1. String? polling,
  2. String? streaming,
  3. String? events,
})

Construct custom service endpoints.

In typical SDK usage custom endpoints are not required. When custom endpoints are required it is recommended that each endpoint is set.

For debugging purposes a single endpoint may be set, such as using ngrok to inspect generated events.

Implementation

ServiceEndpoints.custom({super.polling, super.streaming, super.events})
    : super.custom();