AuthField<T> constructor

AuthField<T>({
  1. required String name,
  2. required T value,
  3. dynamic onValueChanged(
    1. T
    )?,
  4. Widget? title,
  5. List<String? Function(T?)> validators = const [],
})

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 [],
});