Input Field
data class InputField(val type: LoginClient.InputField.Type, val key: String, val label: String, val isRequired: Boolean, val regex: <Error class: unknown class>? = null)
Represents an input field for the login screen.
Parameters
type
The type of the input field
key
The key to be used in the data map in the onLogin method
label
The label to be displayed for the input field
is Required
If the field is required
regex
The regex to be used for validation of the input field
Constructors
Link copied to clipboard
constructor(type: LoginClient.InputField.Type, key: String, label: String, isRequired: Boolean, regex: <Error class: unknown class>? = null)