valueOf<T> method

T? valueOf<T>(
  1. String name
)

Returns the value of FieldBloc that has this name.

Implementation

T? valueOf<T>(String name) {
  return FormBlocUtils.getValueOfFieldBlocsStates(
    path: name,
    fieldBlocsStates: _fieldBlocsStates,
  ) as T?;
}