SubmitCubit<F> constructor

SubmitCubit<F>({
  1. String? timeoutMessage,
  2. String? unexpectedExceptionMessage,
  3. String? technicalErrorMessage,
  4. FetchCubit<F>? fetchCubit,
  5. DataFetcher<F>? dataFetcher,
})

Implementation

SubmitCubit({
  this.timeoutMessage,
  this.unexpectedExceptionMessage,
  this.technicalErrorMessage,
  this.fetchCubit,
  this.dataFetcher,
}) : super(SubmitInitial());