BikePointOccupancy constructor

BikePointOccupancy({
  1. String? id,
  2. String? name,
  3. int? bikesCount,
  4. int? emptyDocks,
  5. int? totalDocks,
})

Implementation

BikePointOccupancy({
  this.id,
  this.name,
  this.bikesCount,
  this.emptyDocks,
  this.totalDocks,
});