Stats constructor

Stats({
  1. int? climbsCount,
  2. int? sessionsCount,
  3. int? locationsCount,
  4. int? routesCount,
  5. int? sectorsCount,
  6. int? tagsCount,
  7. int? mediaCount,
})

Creates a new Stats instance

Implementation

Stats({
  this.climbsCount,
  this.sessionsCount,
  this.locationsCount,
  this.routesCount,
  this.sectorsCount,
  this.tagsCount,
  this.mediaCount,
});