codeAssets property

List<CodeAsset> get codeAssets

The code assets emitted by the link hook.

Implementation

List<CodeAsset> get codeAssets => encodedAssets
    .where((asset) => asset.type == CodeAsset.type)
    .map<CodeAsset>(CodeAsset.fromEncoded)
    .toList();