TextFieldBloc<ExtraData> constructor

TextFieldBloc<ExtraData>({
  1. String? name,
  2. String initialValue = '',
  3. List<Validator<String>>? validators,
  4. List<AsyncValidator<String>>? asyncValidators,
  5. Duration asyncValidatorDebounceTime = const Duration(milliseconds: 500),
  6. Suggestions<String>? suggestions,
  7. ExtraData? extraData,
})

TextFieldBloc

Properties:

  • name : It is the string that identifies the fieldBloc, it is available in FieldBlocState.name.
  • initialValue : The initial value of the field, by default is a empty String (''). And if the value is null it will be a empty String ('').
  • validators : List of Validators. Each time the value will change, if the FormBloc that use this TextFieldBloc has set in the super constructor autoValidate = true, the value is passed to each validator, and if any validator returns a String error, it will be added to TextFieldBlocState.error. Else if autoValidate = false, the value will be checked only when you call validate which is called automatically when call FormBloc.submit.
  • asyncValidators : List of AsyncValidators. it is the same as validators but asynchronous. Very useful for server validation.
  • asyncValidatorDebounceTime : The debounce time when any asyncValidator must be called, by default is 500 milliseconds. Very useful for reduce the number of invocations of each `asyncValidator. For example, used for prevent limit in API calls.
  • suggestions : This need be a Suggestions and will be added to TextFieldBlocState.suggestions. It is used to suggest values, usually from an API, and any of those suggestions can be used to update the value using updateValue.
  • extraData : It is an object that you can use to add extra data, it will be available in the state FieldBlocState.extraData.

Implementation

TextFieldBloc({
  String? name,
  String initialValue = '',
  List<Validator<String>>? validators,
  List<AsyncValidator<String>>? asyncValidators,
  Duration asyncValidatorDebounceTime = const Duration(milliseconds: 500),
  Suggestions<String>? suggestions,
  ExtraData? extraData,
}) : super(
        validators: validators,
        asyncValidators: asyncValidators,
        asyncValidatorDebounceTime: asyncValidatorDebounceTime,
        initialState: TextFieldBlocState(
          isValueChanged: false,
          initialValue: initialValue,
          updatedValue: initialValue,
          value: initialValue,
          error: FieldBlocUtils.getInitialStateError(
            validators: validators,
            value: initialValue,
          ),
          isDirty: false,
          suggestions: suggestions,
          isValidated: FieldBlocUtils.getInitialIsValidated(
            FieldBlocUtils.getInitialStateIsValidating(
              asyncValidators: asyncValidators,
              validators: validators,
              value: initialValue,
            ),
          ),
          isValidating: FieldBlocUtils.getInitialStateIsValidating(
            asyncValidators: asyncValidators,
            validators: validators,
            value: initialValue,
          ),
          name: FieldBlocUtils.generateName(name),
          toJson: (value) => value,
          extraData: extraData,
        ),
      );