MisspelledWord

data class MisspelledWord(val word: String, val suggestions: List<String>) : WordCheckResult(source)

Result for a misspelled word, with up to maxSuggestions suggestions (closest first). suggestions may be empty when the platform offers no alternatives.

Constructors

Link copied to clipboard
constructor(word: String, suggestions: List<String>)

Properties

Link copied to clipboard
Link copied to clipboard
open override val word: String

The word that was checked.