TramStation Class declared, JSON missing
This commit is contained in:
22
lib/stations.dart
Normal file
22
lib/stations.dart
Normal file
@@ -0,0 +1,22 @@
|
||||
class TramStation {
|
||||
final String name;
|
||||
final String city;
|
||||
final double latitude;
|
||||
final double longitude;
|
||||
|
||||
TramStation({
|
||||
required this.name,
|
||||
required this.city,
|
||||
required this.latitude,
|
||||
required this.longitude,
|
||||
});
|
||||
|
||||
factory TramStation.fromJson(Map<String, dynamic> json) {
|
||||
return TramStation(
|
||||
name: json['name'] as String,
|
||||
city: json['city'] as String,
|
||||
latitude: json['latitude'] as double,
|
||||
longitude: json['longitude'] as double,
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user