PlacePrediction constructor

PlacePrediction({
  1. required String placeId,
  2. List<String>? types,
  3. String? fullText,
  4. String? primaryText,
  5. String? secondaryText,
  6. int? distanceMeters,
})

Implementation

PlacePrediction({
  required this.placeId,
  this.types,
  this.fullText,
  this.primaryText,
  this.secondaryText,
  this.distanceMeters,
});