throwFunction1<T1> function

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

Throwing function with 1 positional argument.

Implementation

Map1<T1, Never> throwFunction1<T1>(Object throwable) =>
    (arg1) => throw throwable;