nearbySearch method
Implementation
void nearbySearch(
PlaceSearchRequest? request, [
void Function(
List<PlaceResult?>?, PlacesServiceStatus?, PlaceSearchPagination?)?
callback,
]) {
callMethod(this, 'nearbySearch', [
request,
callback == null
? null
: allowInterop((p0, p1, p2) => callback(
p0?.cast<PlaceResult?>(), PlacesServiceStatus$cast(p1), p2))
]);
}