c<E> method

E Function(A a, B b, C c) c<E>(
  1. E f(
    1. D d
    )
)

compose two functions together

add.c(print);
// is the same as
() => print(add());

Implementation

E Function(A a, B b, C c) c<E>(E Function(D d) f) =>
    (a, b, c) => f(this(a, b, c));