concat method

Algorithm<T> concat(
  1. Algorithm<T>? operand
)

Implementation

Algorithm<T> concat(Algorithm<T>? operand) {
  if (operand != null) _flow.get = [...(_flow.get ?? []), ...(operand._flow.get ?? [])];
  return this;
}