publicKeyOrToken property
Blob?
get
publicKeyOrToken
The public key or token identifying the referenced assembly, if available.
Implementation
Blob? get publicKeyOrToken {
final blob = readBlob(2);
if (blob.isEmpty) return null;
return blob;
}