Domain constructor

Domain({
  1. String? admin,
  2. bool? auditLogsEnabled,
  3. List<String>? authorizedNetworks,
  4. String? createTime,
  5. String? fqdn,
  6. Map<String, String>? labels,
  7. List<String>? locations,
  8. String? name,
  9. String? reservedIpRange,
  10. String? state,
  11. String? statusMessage,
  12. List<Trust>? trusts,
  13. String? updateTime,
})

Implementation

Domain({
  this.admin,
  this.auditLogsEnabled,
  this.authorizedNetworks,
  this.createTime,
  this.fqdn,
  this.labels,
  this.locations,
  this.name,
  this.reservedIpRange,
  this.state,
  this.statusMessage,
  this.trusts,
  this.updateTime,
});