Site constructor

Site({
  1. String? accountId,
  2. String? description,
  3. String? name,
  4. String? siteId,
  5. Map<String, String>? tags,
})

Implementation

Site({
  this.accountId,
  this.description,
  this.name,
  this.siteId,
  this.tags,
});