SearchBound constructor

SearchBound({
  1. LatLng? lowerLeft,
  2. LatLng? upperRight,
  3. LatLng? center,
  4. int? range,
  5. String? shape,
  6. bool? isDistanceSort = true,
  7. List<LatLng>? polyGonList = const [],
})

Implementation

SearchBound({
  this.lowerLeft,
  this.upperRight,
  this.center,
  this.range,
  this.shape,
  this.isDistanceSort = true,
  this.polyGonList = const [],
});