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