InputFieldBloc<Value, ExtraData> constructor
InputFieldBloc<Value, ExtraData> ({
- String? name,
- required Value initialValue,
- List<
Validator< ? validators,Value> > - List<
AsyncValidator< ? asyncValidators,Value> > - Duration asyncValidatorDebounceTime = const Duration(milliseconds: 500),
- Suggestions<
Value> ? suggestions, - dynamic toJson(
- Value value
- ExtraData? extraData,
InputFieldBloc<Value, ExtraData>
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 isnull.validators: List of Validators. Each time thevaluewill change, if the FormBloc that use this InputFieldBloc has set in thesuperconstructorautoValidate = true, thevalueis passed to eachvalidator, and if anyvalidatorreturns aString error, it will be added to InputFieldBlocState.error. Else ifautoValidate = 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 asvalidatorsbut asynchronous. Very useful for server validation.asyncValidatorDebounceTime: The debounce time when anyasyncValidatormust 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 InputFieldBlocState.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.toJsonTransform value in a JSON value. By default returns value. This method is called when you use FormBlocState.toJsonextraData: It is an object that you can use to add extra data, it will be available in the state FieldBlocState.extraData.
Implementation
InputFieldBloc({
String? name,
required Value initialValue,
super.validators,
super.asyncValidators,
super.asyncValidatorDebounceTime = const Duration(milliseconds: 500),
Suggestions<Value>? suggestions,
dynamic Function(Value value)? toJson,
ExtraData? extraData,
}) : super(
initialState: InputFieldBlocState(
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: toJson,
extraData: extraData,
),
);