emitUpdatingFields method
Update the state of the form bloc
to FormUpdatingFields.
Implementation
void emitUpdatingFields({double? progress}) {
  emit(state.toUpdatingFields(
    progress: progress,
  ));
}
Update the state of the form bloc
to FormUpdatingFields.
void emitUpdatingFields({double? progress}) {
  emit(state.toUpdatingFields(
    progress: progress,
  ));
}