StepsBloc constructor

StepsBloc({
  1. required SaveFileService saveFileService,
})

Implementation

StepsBloc({
  required this.saveFileService,
}) : super(StepsInitial()) {
  on<CheckAuth>(_checkAuth);
  on<UpdateAuth>(_updateAuth);
  on<FinishConfig>(_selectCertificate);
  on<ShowChooseFiles>(_showChooseFiles);
  on<ActionSignDocuments>(_signDocuments);
  on<DownloadDocuments>(_downloadDocuments);
}