PutResolve constructor

PutResolve(
  1. dynamic action, {
  2. Channel? channel,
  3. Result? result,
})

Creates an instance of a PutResolve effect.

Implementation

PutResolve(dynamic action, {Channel? channel, Result? result})
    : super(action, channel: channel, resolve: true, result: result);