ws method

Uri ws([
  1. String? path
])

Returns the cluster's web socket url.

Implementation

Uri ws([final String? path]) {
  return _endpoint(secure ? Scheme.wss : Scheme.ws, path);
}