Search State
data class SearchState(val searchText: String = "", val currentMatchIndex: Int = -1, val allMatches: List<SearchMatch> = emptyList(), val hasMatches: Boolean = false)
Constructors
Link copied to clipboard
constructor(searchText: String = "", currentMatchIndex: Int = -1, allMatches: List<SearchMatch> = emptyList(), hasMatches: Boolean = false)