emitUpdatingFields method

void emitUpdatingFields({
  1. double? progress,
})

Update the state of the form bloc to FormUpdatingFields.

Implementation

void emitUpdatingFields({double? progress}) {
  emit(state.toUpdatingFields(
    progress: progress,
  ));
}