style(transport_helper): remove redundant type declaration

This commit is contained in:
fbachus
2026-07-06 18:03:05 +02:00
parent 772363cf15
commit 61efa70bf1
+1 -1
View File
@@ -339,7 +339,7 @@ class Station {
}
factory Station.fromJson(Map<String, dynamic> 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(