new project stable version
This commit is contained in:
12
lib/domain/entities/point.dart
Normal file
12
lib/domain/entities/point.dart
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
class Point {
|
||||
final double latitude;
|
||||
final double longitude;
|
||||
|
||||
Point(this.latitude, this.longitude);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'Point{latitude: $latitude, longitude: $longitude}';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user