throwFunction1<T0> function

Map1<T0, Never> throwFunction1<T0>(
  1. Object throwable
)

Throwing function with 1 argument.

Implementation

Map1<T0, Never> throwFunction1<T0>(Object throwable) =>
    (arg0) => throw throwable;