Site constructor

Site({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. String? domain,
  5. bool? isPublished,
  6. String? siteTitle,
})

Implementation

Site({
  this.id, this.createdAt, this.updatedAt, this.domain,
this.isPublished, this.siteTitle
});