throwFunction2<T1, T2> function

Map2<T1, T2, Never> throwFunction2<T1, T2>(
  1. Object throwable
)

Throwing function with 2 positional arguments.

Implementation

Map2<T1, T2, Never> throwFunction2<T1, T2>(Object throwable) =>
    (arg1, arg2) => throw throwable;