runWith<A extends Object, E extends Object> method
Run one Effect with an execution-scoped Module.
Implementation
Future<ResultDart<A, E>> runWith<A extends Object, E extends Object>(
Module module,
Effect<A, E> effect, {
String? executionLabel,
}) {
return runtime.runWith(module, effect, executionLabel: executionLabel);
}