hasOutputFor method
Whether this builder is expected to output assets when running on input
.
This will be true
iff its expectedOutputs is not empty, but may be
more efficient to compute.
Implementation
bool hasOutputFor(AssetId input) {
return _parsedExtensions.any((e) => e.hasAnyOutputFor(input));
}