AuthField<T> constructor
Constructs an AuthField object.
name specifies the name of the field.
value specifies the initial value of the field.
onValueChanged is a callback function triggered when the value of the field changes (optional).
title specifies the title widget of the field (optional).
validators defines a list of validation functions for the field (optional).
Implementation
AuthField({
required this.name,
required this.value,
this.onValueChanged,
this.title,
this.validators = const [],
});