TestInfo<St> constructor

TestInfo<St>(
  1. St state,
  2. bool ini,
  3. ReduxAction<St>? action,
  4. Object? error,
  5. Object? processedError,
  6. int dispatchCount,
  7. int reduceCount,
  8. Queue<UserException> errors,
)

Implementation

TestInfo(
  this.state,
  this.ini,
  this.action,
  this.error,
  this.processedError,
  this.dispatchCount,
  this.reduceCount,
  this.errors,
) : assert(state != null);