LocationResult constructor

LocationResult({
  1. required double latitude,
  2. required double longitude,
  3. required String address,
  4. String? city,
  5. String? state,
  6. String? country,
  7. String? postalCode,
  8. AddressSource addressSource = AddressSource.manualEntry,
})

Implementation

LocationResult({
  required this.latitude,
  required this.longitude,
  required this.address,
  this.city,
  this.state,
  this.country,
  this.postalCode,
  this.addressSource = AddressSource.manualEntry,
});