PlaceOptions constructor

PlaceOptions({
  1. bool? enableTextSearch,
  2. String? filter,
  3. String? hint,
  4. int? historyCount,
  5. int? limit,
  6. String? pod,
  7. bool? saveHistory,
  8. String? backgroundColor,
  9. String? statusbarColor,
  10. String? toolbarColor,
  11. String? toolbarTintColor,
  12. bool? tokenizeAddress,
  13. bool? userAddedLocationEnable,
  14. double? zoom,
  15. LatLng? location,
  16. int? attributionVerticalAlignment = PlaceOptions.GRAVITY_TOP,
  17. int? attributionHorizontalAlignment = PlaceOptions.GRAVITY_LEFT,
  18. int? logoSize = PlaceOptions.SIZE_MEDIUM,
  19. String? primaryTextColor,
  20. String? tintColor,
  21. String? tableCellSeparatorColor,
  22. String? primaryTextHighlightColor,
  23. bool? bridge,
  24. bool? hyperLocal,
  25. int? minCharactersForSearch,
})

Implementation

PlaceOptions(
    {this.enableTextSearch,
    this.filter,
    this.hint,
    this.historyCount,
    this.limit,
    this.pod,
    this.saveHistory,
    this.backgroundColor,
    this.statusbarColor,
    this.toolbarColor,
    this.toolbarTintColor,
    this.tokenizeAddress,
    this.userAddedLocationEnable,
    this.zoom,
    this.location,

    //new
    this.attributionVerticalAlignment = PlaceOptions.GRAVITY_TOP,
    this.attributionHorizontalAlignment = PlaceOptions.GRAVITY_LEFT,
    this.logoSize = PlaceOptions.SIZE_MEDIUM,

    //ios
    this.primaryTextColor,
    this.tintColor,
    this.tableCellSeparatorColor,
    this.primaryTextHighlightColor,
    this.bridge,
    this.hyperLocal,
    this.minCharactersForSearch});