xpubkey property

String xpubkey

Returns the serialized xpub-encoded public key associated with this private key as a string

Implementation

String get xpubkey {
    var pubkey = _generatePubKey();

    return pubkey.serialize();
}