Road constructor

Road({
  1. String? direction,
  2. num? distance,
  3. String? id,
  4. LatLng? latLngPoint,
  5. String? name,
})

Implementation

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