ElementModel constructor

ElementModel({
  1. String? title,
  2. String? description,
  3. String? image,
  4. String? appleIcon,
  5. String? favIcon,
  6. String? link,
})

Implementation

ElementModel({
  this.title,
  this.description,
  this.image,
  this.appleIcon,
  this.favIcon,
  this.link,
});