then method

Call then(
  1. Call next
)

Returns a composed Call that calls this Call followed by next.

Implementation

Call then(Call next) => () {
  this();
  next();
};