Obstacle constructor

Obstacle({
  1. String? type,
  2. String? incline,
  3. int? stopId,
  4. String? position,
})

Implementation

Obstacle({
  this.type,
  this.incline,
  this.stopId,
  this.position,
});