UiMessage

data class UiMessage(val message: String, val id: String = UUID.randomUUID().toString(), val error: Boolean = true)

A UI message, either an error or informational to display.

Constructors

Link copied to clipboard
constructor(message: String, id: String = UUID.randomUUID().toString(), error: Boolean = true)

Properties

Link copied to clipboard
val error: Boolean = true
Link copied to clipboard
val id: String
Link copied to clipboard