Summoner constructor

Summoner({
  1. String? summonerName,
  2. int? level,
  3. String? accID,
  4. String? summonerID,
  5. int? lastTimeOnline,
})

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

Implementation

Summoner({
  this.summonerName,
  this.level,
  this.accID,
  this.summonerID,
  this.lastTimeOnline,
});