isEmail

Check if StringProperty is an email based on the format.

val property = StringProperty()
val control = Control(
scope = "#/properties/key",
options = Options(format = Format.Email)
)
val isPassword = property.isEmail(control)

Return

true if the StringProperty is an email

Parameters