ELEC60013-ES-CW1/lib/model/latitude_longitude.dart

11 lines
275 B
Dart
Raw Normal View History

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