Player constructor

Player({
  1. String? avatarImageUrl,
  2. String? bannerUrlLandscape,
  3. String? bannerUrlPortrait,
  4. String? displayName,
  5. PlayerExperienceInfo? experienceInfo,
  6. String? friendStatus,
  7. String? gamePlayerId,
  8. String? kind,
  9. PlayerName? name,
  10. String? originalPlayerId,
  11. String? playerId,
  12. ProfileSettings? profileSettings,
  13. String? title,
})

Implementation

Player({
  this.avatarImageUrl,
  this.bannerUrlLandscape,
  this.bannerUrlPortrait,
  this.displayName,
  this.experienceInfo,
  this.friendStatus,
  this.gamePlayerId,
  this.kind,
  this.name,
  this.originalPlayerId,
  this.playerId,
  this.profileSettings,
  this.title,
});