GiftModel constructor

GiftModel({
  1. String? giftId,
  2. String? giftName,
  3. String? imageUrl,
  4. String? animationUrl,
  5. int? price,
  6. Map<String, String>? extInfo,
})

Implementation

GiftModel({
  this.giftId,
  this.giftName,
  this.imageUrl,
  this.animationUrl,
  this.price,
  this.extInfo,
});