Street constructor

Street({
  1. String? name,
  2. String? closure,
  3. String? directions,
  4. List<StreetSegment>? segments,
  5. int? sourceSystemId,
  6. String? sourceSystemKey,
})

Implementation

Street({
  this.name,
  this.closure,
  this.directions,
  this.segments,
  this.sourceSystemId,
  this.sourceSystemKey,
});