SearchState

data class SearchState(    val searchSuggestionState: SuggestionsResult = SuggestionsResult.NoResult,     val currentScreen: CurrentSearchScreen = CurrentSearchScreen.NONE,     val favoriteSuggestionsState: SuggestionsResult = SuggestionsResult.NoResult,     val typeOfPlaceToAdd: FavoriteType? = null,     val previousState: SearchState? = null,     val searchQuery: String,     val searchAnchor: Point?)

Constructors

Link copied to clipboard
constructor(    searchSuggestionState: SuggestionsResult = SuggestionsResult.NoResult,     currentScreen: CurrentSearchScreen = CurrentSearchScreen.NONE,     favoriteSuggestionsState: SuggestionsResult = SuggestionsResult.NoResult,     typeOfPlaceToAdd: FavoriteType? = null,     previousState: SearchState? = null,     searchQuery: String,     searchAnchor: Point?)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val searchAnchor: Point?
Link copied to clipboard
Link copied to clipboard