isBuilderConfigAsset method
Returns whether an asset has builder annotations.
id is the ID of the asset to check.
Implementation
bool isBuilderConfigAsset(String id) {
final int? tlmFlag = assets[id]?[GraphIndex.assetTLMFlag];
return tlmFlag == TLMFlag.builder.index || tlmFlag == TLMFlag.both.index;
}