http method

Uri http([
  1. String? path
])

Returns the cluster's HTTP url.

Implementation

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