fork method

Fiber<A, E> fork([
  1. Context<R>? context
])

Forks this effect into a fiber using the default runtime

Implementation

Fiber<A, E> fork([Context<R>? context]) =>
    Runtime.defaultRuntime.fork(this, context);