pipe function

dynamic pipe(
  1. Function f,
  2. List fs
)

Implementation

pipe(Function f, List fs) => (List as) => fxDart([f(as), ...fs]);