Player constructor

Player({
  1. String? displayName,
  2. String? hiResImageUri,
  3. String? iconImageUri,
  4. int? level,
  5. String? playerId,
  6. bool? hasHiResImage,
  7. bool? hasIconImage,
  8. String? playerSign,
  9. String? signTs,
  10. String? openId,
  11. String? unionId,
  12. String? accessToken,
  13. String? openIdSign,
})

Implementation

Player({
  this.displayName,
  this.hiResImageUri,
  this.iconImageUri,
  this.level,
  this.playerId,
  this.hasHiResImage,
  this.hasIconImage,
  this.playerSign,
  this.signTs,
  this.openId,
  this.unionId,
  this.accessToken,
  this.openIdSign,
});