mirror of
https://github.com/supleed2/ELEC60013-ES-CW1.git
synced 2024-11-10 01:35:50 +00:00
10 lines
272 B
Dart
10 lines
272 B
Dart
class LatitudeLongitude {
|
|
final double latitude;
|
|
final double longitude;
|
|
|
|
LatitudeLongitude(this.latitude, this.longitude);
|
|
|
|
LatitudeLongitude.fromJson(Map<String, dynamic> parsedJson):
|
|
latitude = parsedJson['latitude'], longitude = parsedJson['longitude'];
|
|
}
|