Domain constructor

Domain({
  1. String? arn,
  2. DateTime? createdAt,
  3. List<DomainEntry>? domainEntries,
  4. ResourceLocation? location,
  5. String? name,
  6. ResourceType? resourceType,
  7. String? supportCode,
  8. List<Tag>? tags,
})

Implementation

Domain({
  this.arn,
  this.createdAt,
  this.domainEntries,
  this.location,
  this.name,
  this.resourceType,
  this.supportCode,
  this.tags,
});