isBuilderConfigAsset method

bool isBuilderConfigAsset(
  1. String id
)

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;
}