Road constructor

const Road({
  1. String? id,
  2. String? name,
  3. String? direction,
  4. String? distance,
  5. String? location,
})

Implementation

const Road({
  this.id,
  this.name,
  this.direction,
  this.distance,
  this.location,
});