You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
392 B
Dart
24 lines
392 B
Dart
class LocationDetails {
|
|
double? _lat;
|
|
double? _long;
|
|
String? _formattedAddress;
|
|
|
|
double get lat => _lat!;
|
|
|
|
set lat(double lat) {
|
|
_lat = lat;
|
|
}
|
|
|
|
double get long => _long!;
|
|
|
|
set long(double long) {
|
|
_long = long;
|
|
}
|
|
|
|
String? get formattedAddress => _formattedAddress;
|
|
|
|
set formattedAddress(String? formattedAddress) {
|
|
_formattedAddress = formattedAddress;
|
|
}
|
|
}
|