TypedLink.concat constructor

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

Create a TypedLink by chaining two typedLinks

Implementation

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