ShopItemModel constructor

ShopItemModel({
  1. String? currency,
  2. String? colorCode,
  3. String? description,
  4. String? pictureUrl,
  5. int? commissionId,
  6. String? title,
  7. double? price,
})

Implementation

ShopItemModel(
    {this.currency,
    this.colorCode,
    this.description,
    this.pictureUrl,
    this.commissionId,
    this.title,
    this.price});