partial3 method

Function1<D, R> partial3(
  1. A first,
  2. B second,
  3. C third
)

Implementation

Function1<D, R> partial3(A first, B second, C third) =>
    (D fourth) => this(first, second, third, fourth);