AddressService constructor

AddressService(
  1. String sessionToken,
  2. String mapsApiKey,
  3. String? componentCountry,
  4. String? language,
)

Implementation

AddressService(this.sessionToken, this.mapsApiKey, this.componentCountry,
    this.language) {
  apiClient =
      PlaceApiProvider(sessionToken, mapsApiKey, componentCountry, language);
}