throwFunction3<T1, T2, T3> function

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

Throwing function with 3 positional arguments.

Implementation

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