SearchResult constructor

SearchResult({
  1. required bool isCancelled,
  2. bool isManual = false,
  3. LatLng? position,
  4. String? name,
  5. String? description,
})

Implementation

SearchResult(
    {required this.isCancelled,
    this.isManual = false,
    this.position,
    this.name,
    this.description});