LoginConfig

@Serializable
data class LoginConfig(val showLogo: Boolean = true, val enablePin: Boolean? = false, val pinLength: Int = 4, val pinLoginMessage: String? = null, val logoHeight: Int = 120, val logoWidth: Int = 140, val showAppTitle: Boolean = true, val supervisorContactNumber: String? = null)

Constructors

Link copied to clipboard
constructor(showLogo: Boolean = true, enablePin: Boolean? = false, pinLength: Int = 4, pinLoginMessage: String? = null, logoHeight: Int = 120, logoWidth: Int = 140, showAppTitle: Boolean = true, supervisorContactNumber: String? = null)

Properties

Link copied to clipboard
val enablePin: Boolean? = false
Link copied to clipboard
val logoHeight: Int = 120
Link copied to clipboard
val logoWidth: Int = 140
Link copied to clipboard
val pinLength: Int = 4
Link copied to clipboard
val pinLoginMessage: String? = null
Link copied to clipboard
val showAppTitle: Boolean = true
Link copied to clipboard
val showLogo: Boolean = true
Link copied to clipboard