anyway/frontend/lib/structs/route.dart
Remy Moll 8bc7da0b3e
Some checks failed
Build and push docker image / Build (pull_request) Failing after 41s
Build and release APK / Build APK (pull_request) Successful in 5m25s
Build web / Build Web (pull_request) Successful in 1m17s
first ui elements using the new structs
2024-05-31 21:33:04 +02:00

14 lines
262 B
Dart

import "package:fast_network_navigation/structs/landmark.dart";
class Route {
final String name;
final Duration duration;
final List<Landmark> landmarks;
Route({
required this.name,
required this.duration,
required this.landmarks
});
}