Options constructor

Options({
  1. Map? context,
  2. Channel? channel,
  3. SagaMonitor? sagaMonitor,
  4. OnErrorHandler? onError,
  5. List<EffectMiddlewareHandler>? effectMiddlewares,
})

Creates an instance of a middleware Options

Implementation

Options(
    {this.context,
    this.channel,
    this.sagaMonitor,
    this.onError,
    this.effectMiddlewares});