Geocoder constructor

Geocoder({
  1. String? apiKey,
  2. bool debug = false,
})

Implementation

Geocoder({
  String? apiKey,
  bool debug = false,
}) : super(
        baseUri: Uri.https('maps.googleapis.com'),
        serviceName: 'NovaGeocoder',
        debug: debug,
        apiKey: apiKey,
      );