CalmModel constructor

CalmModel({
  1. String? id,
  2. String? calmName,
  3. String? pictureUrl,
  4. String? videoUrl,
  5. dynamic datetime,
  6. int? isUniversal,
  7. int? cardType,
  8. int? duration,
  9. double? price,
  10. String? currency,
  11. int? freeSampleFrom,
  12. int? freeSampleTo,
  13. dynamic rating,
  14. int? numberOfSubscriber,
  15. CalmSubscriber? creator,
  16. CalmCate? category,
})

Implementation

CalmModel(
    {this.id,
    this.calmName,
    this.pictureUrl,
    this.videoUrl,
    this.datetime,
    this.isUniversal,
    this.cardType,
    this.duration,
    this.price,
    this.currency,
    this.freeSampleFrom,
    this.freeSampleTo,
    this.rating,
    this.numberOfSubscriber,
    this.creator,
    this.category});