League constructor

League({
  1. int? id,
  2. String? name,
  3. String? country,
  4. String? flag,
  5. int? season,
  6. String? round,
})

Implementation

League(
    {this.id,
    this.name,
    this.country,
    this.logo,
    this.flag,
    this.season,
    this.round});