ELEC60013-ES-CW1/lib/model/latitude_longitude.dart
2022-02-14 14:40:18 +00:00

11 lines
275 B
Dart

class LatitudeLongitude {
double latitude;
double longitude;
LatitudeLongitude(this.latitude, this.longitude);
factory LatitudeLongitude.fromJson(Map<String, dynamic> parsedJson){
return LatitudeLongitude(parsedJson['latitude'], parsedJson['longitude']);
}
}