getDeleagtorAsAddressBytes method
Get the delegator as Address type, in bytes. @return or null.
Implementation
Uint8List? getDeleagtorAsAddressBytes() {
Uint8List? pubKey = getDelegator();
return pubKey == null ? null : Address.publicKeyToAddressBytes(pubKey);
}