c<B> method
B Function()
c<B>(
- B f(
- A a
compose two functions together
add.c(print);
// is the same as
() => print(add());
Implementation
B Function() c<B>(B Function(A a) f) => () => f(this());