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.
HMG_Patient_App/lib/models/ambulanceRequest/locationDetails.dart

24 lines
392 B
Dart

4 years ago
class LocationDetails {
double? _lat;
double? _long;
String? _formattedAddress;
4 years ago
double get lat => _lat!;
4 years ago
set lat(double lat) {
_lat = lat;
}
double get long => _long!;
4 years ago
set long(double long) {
_long = long;
}
2 years ago
String? get formattedAddress => _formattedAddress;
4 years ago
2 years ago
set formattedAddress(String? formattedAddress) {
4 years ago
_formattedAddress = formattedAddress;
}
}