throwFunction3<T0, T1, T2> function

Map3<T0, T1, T2, Never> throwFunction3<T0, T1, T2>(
  1. Object throwable
)

Throwing function with 3 arguments.

Implementation

Map3<T0, T1, T2, Never> throwFunction3<T0, T1, T2>(Object throwable) =>
    (arg0, arg1, arg2) => throw throwable;