withEnv<R2> method

ZIOContext<R2> withEnv<R2>(
  1. R2 env
)

Implementation

ZIOContext<R2> withEnv<R2>(R2 env) => ZIOContext._(
      runtime: runtime,
      env: env,
      signal: signal,
      layers: layers,
      annotations: _annotations,
    );