runToExit<A, E, R> method
Runs an effect and returns its Exit result
Implementation
Future<Exit<A, E>> runToExit<A, E, R>(
Effect<A, E, R> effect, [
Context<R>? context,
]) async {
return effect.runToExit(context);
}
Runs an effect and returns its Exit result
Future<Exit<A, E>> runToExit<A, E, R>(
Effect<A, E, R> effect, [
Context<R>? context,
]) async {
return effect.runToExit(context);
}