Application constructor

Application({
  1. int? achievementCount,
  2. List<ImageAsset>? assets,
  3. String? author,
  4. ApplicationCategory? category,
  5. String? description,
  6. List<String>? enabledFeatures,
  7. String? id,
  8. List<Instance>? instances,
  9. String? kind,
  10. String? lastUpdatedTimestamp,
  11. int? leaderboardCount,
  12. String? name,
  13. String? themeColor,
})

Implementation

Application({
  this.achievementCount,
  this.assets,
  this.author,
  this.category,
  this.description,
  this.enabledFeatures,
  this.id,
  this.instances,
  this.kind,
  this.lastUpdatedTimestamp,
  this.leaderboardCount,
  this.name,
  this.themeColor,
});