partial4 method

Function0<R> partial4(
  1. A first,
  2. B second,
  3. C third,
  4. D fourth,
)

Implementation

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