Positive

data class Positive(val text: String, val emoji: String = "🟢") : Answer

Essentially "Yes" in many words.

Constructors

Link copied to clipboard
constructor(text: String, emoji: String = "🟢")

Properties

Link copied to clipboard
open override val emoji: String

An emoji for the answer, for easier formatting.

Link copied to clipboard
open override val text: String

The answer text

Functions

Link copied to clipboard
fun format(): String

Default formatting with emoji. You don't have to use the emoji, you can use a when statement on the answer and use custom logic.