Achievement constructor

Achievement({
  1. String? id,
  2. int? reachedSteps,
  3. String? descInfo,
  4. String? localeReachedSteps,
  5. String? localeAllSteps,
  6. int? recentUpdateTime,
  7. String? displayName,
  8. Player? gamePlayer,
  9. String? visualizedThumbnailUri,
  10. int? state,
  11. int? allSteps,
  12. int? type,
  13. String? reachedThumbnailUri,
})

Implementation

Achievement({
  this.id,
  this.reachedSteps,
  this.descInfo,
  this.localeReachedSteps,
  this.localeAllSteps,
  this.recentUpdateTime,
  this.displayName,
  this.gamePlayer,
  this.visualizedThumbnailUri,
  this.state,
  this.allSteps,
  this.type,
  this.reachedThumbnailUri,
});