TransportInfo
data class TransportInfo(val type: PublicTransportType, val name: String, val color: Color, val schedule: TransportSchedule, val nextDepartures: List<TransportSchedule> = emptyList())
Represents transportation information for a specific segment of a route. Contains details about a particular transport line operating within a route fragment.
Constructors
Link copied to clipboard
constructor(type: PublicTransportType, name: String, color: Color, schedule: TransportSchedule, nextDepartures: List<TransportSchedule> = emptyList())