Participant constructor

Participant({
  1. String? summonerName,
  2. String? summonerID,
  3. int? teamID,
  4. String? championName,
  5. bool? win,
  6. int? kills,
  7. int? deaths,
  8. int? assists,
  9. int? csScore,
  10. List<int?>? items,
})

A Summoner() instance to use to create a custom summoner or use it with the League() instance to get real-time information.

Implementation

Participant({
  this.summonerName,
  this.summonerID,
  this.teamID,
  this.championName,
  this.win,
  this.kills,
  this.deaths,
  this.assists,
  this.csScore,
  this.items,
});