run abstract method

Future<void> run(
  1. EffectHandler<Value> handler
)

Executes the effect immediately with the supplied handler. Each effect implementation defines how it schedules work, emits values, and registers disposables.

Implementation

Future<void> run(
  EffectHandler<Value> handler,
);