Effect<Value>.none constructor
const
Effect<Value>.none ()
Represents the absence of work. Running this effect completes immediately without emitting values or registering cancellations.
Example:
final noOp = Effect<void>.none();
Implementation
const factory Effect.none() = NoneEffect;