Data constructor

Data({
  1. String? id,
  2. String? title,
  3. String? urlViewer,
  4. String? url,
  5. String? displayUrl,
  6. int? width,
  7. int? height,
  8. int? size,
  9. int? time,
  10. int? expiration,
  11. Image? image,
  12. Image? thumb,
  13. String? deleteUrl,
})

Implementation

Data({
  this.id,
  this.title,
  this.urlViewer,
  this.url,
  this.displayUrl,
  this.width,
  this.height,
  this.size,
  this.time,
  this.expiration,
  this.image,
  this.thumb,
  this.deleteUrl,
});