mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-07-06 18:48:51 +08:00
6 lines
113 B
Dart
6 lines
113 B
Dart
class LatLong {
|
|
final double latitude;
|
|
final double longitude;
|
|
LatLong({this.latitude, this.longitude});
|
|
}
|