ErrorDialog

data class ErrorDialog(val title: String? = null, val message: String? = null)

Represents the data shown in the dialog when an error occurs.

Parameters

title

The title displayed in the dialog. If not provided a generic error title will be shown.

message

The message displayed in the dialog. If not provided a generic error message will be shown.

Constructors

Link copied to clipboard
constructor(title: String? = null, message: String? = null)

Properties

Link copied to clipboard
val message: String? = null
Link copied to clipboard
val title: String? = null