getOriginAsAddressBytes method
Get "origin" of the tx by bytes Address style. Notice: Address != public key.
Implementation
Uint8List? getOriginAsAddressBytes() {
Uint8List? pubKey = getOriginAsPublicKey();
return pubKey == null ? null : Address.publicKeyToAddressBytes(pubKey);
}