mergeWith method

$BuildOutput mergeWith(
  1. $BuildOutput other
)

Implementation

$BuildOutput mergeWith($BuildOutput other) {
  return (
    [...this.$1, ...other.$1].toSet().toList(),
    StringBuffer()
      ..write(this.$2)
      ..write(other.$2),
  );
}