ELEC60013-ES-CW1/lib/model/latitude_longitude.dart
2022-02-15 01:04:13 +00:00

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'];
}