PusherOptions constructor

PusherOptions({
  1. PusherAuth? auth,
  2. String? cluster,
  3. String? host,
  4. int? port = 443,
  5. bool? encrypted = true,
  6. int? activityTimeout = 30000,
})

Implementation

PusherOptions({
  this.auth,
  this.cluster,
  this.host,
  this.port = 443,
  this.encrypted = true,
  this.activityTimeout = 30000,
});