PublicTransportRouteInfo constructor

const PublicTransportRouteInfo({
  1. required String name,
  2. required String directionName,
  3. required String lastPlatformName,
  4. required PublicTransportCostInfo? costInfo,
  5. required TraversalType? traversalType,
})

Implementation

const PublicTransportRouteInfo({
  required this.name,
  required this.directionName,
  required this.lastPlatformName,
  required this.costInfo,
  required this.traversalType
});