MoveModel constructor

MoveModel({
  1. int? id,
  2. String? title,
  3. String? slug,
  4. dynamic content,
  5. String? address,
  6. String? video,
  7. double? lat,
  8. double? lng,
  9. dynamic distance,
  10. int? isFeatured,
  11. int? priceRange,
  12. int? reviewScore,
  13. dynamic logoUrl,
  14. dynamic qrCode,
  15. String? image,
  16. String? bannerImage,
  17. List<String>? gallery,
  18. MoviCategory? category,
})

Implementation

MoveModel(
    {this.id,
    this.title,
    this.slug,
    this.content,
    this.address,
    this.video,
    this.lat,
    this.lng,
    this.distance,
    this.isFeatured,
    this.priceRange,
    this.reviewScore,
    this.logoUrl,
    this.qrCode,
    this.image,
    this.bannerImage,
    this.gallery,
    this.category});