@@ -1,8 +1,6 @@
-// @dart=2.9
-
class Location {
- final double latitude;
- final double longitude;
+ final double? latitude;
+ final double? longitude;
Location(this.latitude, this.longitude);