UContentJson constructor

UContentJson({
  1. String? title,
  2. String? detail1,
  3. String? detail2,
  4. String? imageBase64,
  5. String? iconBase64,
  6. String? buttonText,
  7. String? buttonLink,
  8. String? link,
  9. int? order,
  10. String? instagram,
  11. String? telegram,
  12. String? whatsapp,
  13. String? phone,
  14. String? subTitle,
  15. String? description,
  16. List<UContentLink> links = const <UContentLink>[],
  17. List<UContentItem> items = const <UContentItem>[],
})

Implementation

UContentJson({
  this.title,
  this.detail1,
  this.detail2,
  this.imageBase64,
  this.iconBase64,
  this.buttonText,
  this.buttonLink,
  this.link,
  this.order,
  this.instagram,
  this.telegram,
  this.whatsapp,
  this.phone,
  this.subTitle,
  this.description,
  this.links = const <UContentLink>[],
  this.items = const <UContentItem>[],
});