AppDownload constructor

AppDownload(
  1. {int? id,
  2. String? title,
  3. dynamic description,
  4. String? playstoreUrl,
  5. String? appstoreUrl,
  6. String? providerPlaystoreUrl,
  7. String? providerAppstoreUrl,
  8. String? appImage,
  9. String? appImageFull}
)

Implementation

AppDownload({
  this.id,
  this.title,
  this.description,
  this.playstoreUrl,
  this.appstoreUrl,
  this.providerPlaystoreUrl,
  this.providerAppstoreUrl,
  this.appImage,
  this.appImageFull,
});