From 61efa70bf1a77704929caf005696e875691f82b4 Mon Sep 17 00:00:00 2001 From: fbachus Date: Mon, 6 Jul 2026 18:03:05 +0200 Subject: [PATCH] style(transport_helper): remove redundant type declaration --- lib/transport_helper.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/transport_helper.dart b/lib/transport_helper.dart index f3bc074..2c8f8bf 100644 --- a/lib/transport_helper.dart +++ b/lib/transport_helper.dart @@ -339,7 +339,7 @@ class Station { } factory Station.fromJson(Map json) => Station( - id: json["id"] as String? ?? json["extId"] as String, + id: json["id"] ?? json["extId"] as String, name: json["name"], transportLines: json.containsKey("productAtStop") ? json["productAtStop"].map(