Fixture constructor

Fixture({
  1. int? id,
  2. String? referee,
  3. String? timezone,
  4. String? date,
  5. int? timestamp,
  6. Periods? periods,
  7. Venue? venue,
  8. Status? status,
})

Implementation

Fixture(
    {this.id,
    this.referee,
    this.timezone,
    this.date,
    this.timestamp,
    this.periods,
    this.venue,
    this.status});