PersonaPostalAddress.withDetails constructor
PersonaPostalAddress.withDetails()
Implementation
PersonaPostalAddress.withDetails(
String street,
String city,
String state,
String country,
String postalCode,
String postOfficeBox,
LocationSource locationSource,
String locationUri,
String formattedAddress,
double latitude,
double longitude,
double accuracy,
double altitude,
double altitudeAccuracy)
: super() {
this._street = street;
this._city = city;
this._state = state;
this._country = country;
this._postalCode = postalCode;
this._postOfficeBox = postOfficeBox;
this._latitude = latitude;
this._longitude = longitude;
this._source = locationSource;
this._uri = locationUri;
this._formattedAddress = formattedAddress;
this._accuracy = accuracy;
this._altitude = altitude;
this._altitudeAccuracy = altitudeAccuracy;
}