Channel constructor

Channel({
  1. String? createTime,
  2. String? expireTime,
  3. Map<String, String>? labels,
  4. String? name,
  5. Release? release,
  6. int? retainedReleaseCount,
  7. String? ttl,
  8. String? updateTime,
  9. String? url,
})

Implementation

Channel({
  this.createTime,
  this.expireTime,
  this.labels,
  this.name,
  this.release,
  this.retainedReleaseCount,
  this.ttl,
  this.updateTime,
  this.url,
});