LocationPrediction constructor

LocationPrediction({
  1. String? address,
  2. double? latitude,
  3. double? longitude,
  4. String? placeId,
})

Implementation

LocationPrediction({
  this.address,
  this.latitude,
  this.longitude,
  this.placeId,
});