c<F> method
F Function(A a, B b, C c, D d)
c<F>(
- F f(
- E e
compose two functions together
add.c(print);
// is the same as
() => print(add());
Implementation
F Function(A a, B b, C c, D d) c<F>(F Function(E e) f) =>
(a, b, c, d) => f(this(a, b, c, d));