Channel constructor

Channel({
  1. String? address,
  2. String? expiration,
  3. String? id,
  4. String? kind,
  5. Map<String, String>? params,
  6. bool? payload,
  7. String? resourceId,
  8. String? resourceUri,
  9. String? token,
  10. String? type,
})

Implementation

Channel({
  this.address,
  this.expiration,
  this.id,
  this.kind,
  this.params,
  this.payload,
  this.resourceId,
  this.resourceUri,
  this.token,
  this.type,
});