Info constructor

Info({
  1. String? id,
  2. String? createdAt,
  3. String? name,
  4. String? officialTitle,
  5. String? domain,
  6. String? slug,
  7. AddressDTO? address,
  8. Contact? contact,
  9. Tax? tax,
  10. Social? social,
  11. PhotoDTO? logoPhoto,
  12. PhotoDTO? bannerPhoto,
})

Implementation

Info(
    {this.id,
    this.createdAt,
    this.name,
    this.officialTitle,
    this.domain,
    this.slug,
    this.address,
    this.contact,
    this.tax,
    this.social,
    this.logoPhoto,
    this.bannerPhoto});