PTStop constructor
- required int stopId,
- required String stopName,
- bool? isStation,
- required List<
PTRouteInfo> routes,
Constructor for the PTStop class.
Implementation
PTStop({
required this.stopId,
required this.stopName,
this.isStation,
required this.routes,
});