flatFieldBlocs method

Iterable<FieldBloc<FieldBlocStateBase>>? flatFieldBlocs([
  1. int? step
])

Implementation

Iterable<FieldBloc>? flatFieldBlocs([int? step]) {
  if (step == null) return _fieldBlocs.values.expand((e) => e.values);
  return _fieldBlocs[step]?.values;
}