runSyncOrThrow method

A runSyncOrThrow([
  1. Runtime? runtime
])

Runs this ZIO synchronously and throws if it fails.

Implementation

A runSyncOrThrow([Runtime? runtime]) =>
    (runtime ?? Runtime.defaultRuntime).runSyncOrThrow(this);