getDelegatorAsAddressString method

String? getDelegatorAsAddressString()

Get the delegator as Address type, in string. @return or null.

Implementation

String? getDelegatorAsAddressString() {
  Uint8List? pubKey = getDelegator();
  return pubKey == null ? null : Address.publicKeyToAddressString(pubKey);
}