getDetails method

void getDetails(
  1. PlaceDetailsRequest? request, [
  2. void callback(
    1. PlaceResult?,
    2. PlacesServiceStatus?
    )?
])

Implementation

void getDetails(
  PlaceDetailsRequest? request, [
  void Function(PlaceResult?, PlacesServiceStatus?)? callback,
]) {
  callMethod(this, 'getDetails', [
    request,
    callback == null
        ? null
        : allowInterop((p0, p1) => callback(p0, PlacesServiceStatus$cast(p1)))
  ]);
}