ConnectionOptions constructor

ConnectionOptions({
  1. String? baseUrl,
  2. String? hubName,
  3. String? queryString,
  4. List<String?>? hubMethods,
  5. Map<String?, String?>? headers,
  6. Transport? transport,
})

Implementation

ConnectionOptions({
  this.baseUrl,
  this.hubName,
  this.queryString,
  this.hubMethods,
  this.headers,
  this.transport,
});