MatchedStop constructor

MatchedStop({
  1. String? id,
  2. String? url,
  3. String? name,
  4. double? lat,
  5. double? lon,
  6. int? routeId,
  7. String? parentId,
  8. String? stationId,
  9. String? icsId,
  10. String? topMostParentId,
  11. String? direction,
  12. String? towards,
  13. List<String>? modes,
  14. String? stopType,
  15. String? stopLetter,
  16. String? zone,
  17. String? accessibilitySummary,
  18. bool? hasDisruption,
  19. List<Identifier>? lines,
  20. bool? status,
})

Implementation

MatchedStop({
  String? id,
  String? url,
  String? name,
  double? lat,
  double? lon,
  this.routeId,
  this.parentId,
  this.stationId,
  this.icsId,
  this.topMostParentId,
  this.direction,
  this.towards,
  this.modes,
  this.stopType,
  this.stopLetter,
  this.zone,
  this.accessibilitySummary,
  this.hasDisruption,
  this.lines,
  this.status,
}) : super(
        id: id,
        url: url,
        name: name,
        lat: lat,
        lon: lon,
      );