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

10 lines
272 B
Dart
Raw Normal View History

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