reload method

void reload()

Call onLoading and set the current state to FormBlocLoading.

Implementation

void reload() {
  if (state is! FormBlocLoading) {
    emit(state.toLoading());
    _callInBlocContext(onLoading);
  }
}