InventoryItem constructor

InventoryItem({
  1. String? codeValue,
  2. String? gamePlayerId,
  3. String? id,
  4. bool? isRedeemed,
  5. bool? isVerified,
  6. String? name,
  7. String? playerFullName,
  8. String? playerSerialNumber,
  9. String? packageId,
})

Implementation

InventoryItem(
    {this.codeValue,
    this.gamePlayerId,
    this.id,
    this.isRedeemed,
    this.isVerified,
    this.name,
    this.playerFullName,
    this.playerSerialNumber,
    this.packageId});