effectResolved method

void effectResolved(
  1. int effectId,
  2. dynamic result
)

Defines function type which is invoked when an effect is successfully resolved by the middleware

effectId The ID of the yielded effect result The result of the successful resolution of the effect. In case of Fork or Spawn effects, the result will be a Task object.

Implementation

void effectResolved(int effectId, dynamic result) {}