Route constructor

Route({
  1. String? createTime,
  2. String? destinationAddress,
  3. int? destinationPort,
  4. String? displayName,
  5. Map<String, String>? labels,
  6. String? name,
  7. String? updateTime,
})

Implementation

Route({
  this.createTime,
  this.destinationAddress,
  this.destinationPort,
  this.displayName,
  this.labels,
  this.name,
  this.updateTime,
});