EmailValidation class
Inheritance
Mixed-in types
Properties
displayError
→ EmailValidationError ?
The error to display if the FormzInput
value
is not valid and has been modified.
no setter inherited
emailRegExp
→ RegExp ?
final
error
→ EmailValidationError ?
Returns a validation error if the FormzInput
is invalid.
Returns null
if the FormzInput
is valid.
no setter inherited
hashCode
→ int
The hash code for this object.
no setter inherited
isNotValid
→ bool
Whether the FormzInput
value is not valid.
A value is invalid when the overridden validator
returns an error (non-null value).
no setter inherited
isPure
→ bool
If the FormzInput
is pure (has been touched/modified).
Typically when the FormzInput
is initially created,
it is created using the FormzInput.pure
constructor to
signify that the user has not modified it.
final inherited
isValid
→ bool
Whether the FormzInput
value is valid according to the
overridden validator
.
no setter inherited
runtimeType
→ Type
A representation of the runtime type of the object.
no setter inherited
value
→ String
The value of the given FormzInput
.
For example, if you have a FormzInput
for FirstName
,
the value could be 'Joe'.
final inherited