GoogleMapsGeolocation constructor

GoogleMapsGeolocation({
  1. String? apiKey,
  2. String? baseUrl,
  3. Client? httpClient,
  4. Map<String, String>? apiHeaders,
})

Implementation

GoogleMapsGeolocation({
  String? apiKey,
  String? baseUrl,
  Client? httpClient,
  Map<String, String>? apiHeaders,
}) : super(
        apiKey: apiKey,
        baseUrl: baseUrl ?? _baseUrl,
        apiPath: _geolocationUrl,
        httpClient: httpClient,
      );