UContentItem constructor

UContentItem({
  1. String? title,
  2. String? subTitle,
  3. String? description,
  4. String? iconBase64,
  5. String? imageBase64,
  6. String? link,
  7. int? order,
})

Implementation

UContentItem({
  this.title,
  this.subTitle,
  this.description,
  this.iconBase64,
  this.imageBase64,
  this.link,
  this.order,
});