run method

Future<Exit<A, E>> run([
  1. Context<R>? context
])

Runs this effect using the default runtime

Implementation

Future<Exit<A, E>> run([Context<R>? context]) =>
    Runtime.defaultRuntime.runToExit(this, context);