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