PlacesAutocompleteControl constructor

PlacesAutocompleteControl({
  1. required String apiKey,
  2. String hint = "Search",
  3. num? offset,
  4. Location? location,
  5. num? radius,
  6. String? language,
  7. String? sessionToken,
  8. List<String>? types,
  9. List<Component>? components,
  10. bool? strictbounds,
  11. AddressListTileBuilder? listTileBuilder,
  12. ValueChanged<PlacesAutocompleteResponse>? onError,
  13. Key? key,
  14. String? proxyBaseUrl,
  15. Client? httpClient,
})

Implementation

PlacesAutocompleteControl(
    {required this.apiKey,
    this.hint = "Search",
    this.offset,
    this.location,
    this.radius,
    this.language,
    this.sessionToken,
    this.types,
    this.components,
    this.strictbounds,
    this.logo,
    this.listTileBuilder,
    this.onError,
    Key? key,
    this.proxyBaseUrl,
    this.httpClient})
    : super(key: key);