fieldBlocs method

Map<String, FieldBloc<FieldBlocStateBase>>? fieldBlocs([
  1. int? step
])

Implementation

Map<String, FieldBloc>? fieldBlocs([int? step]) {
  if (step == null) {
    return _allFieldBlocsMap;
  } else {
    return _fieldBlocs[step];
  }
}