Link.concat constructor

Link.concat(
  1. Link first,
  2. Link second
)

Create a Link by chaining two links

Implementation

factory Link.concat(
  Link first,
  Link second,
) =>
    Link.from([first, second]);