decode method Null safety
- XdrDataInputStream stream
Implementation
static XdrAddressWithNonce decode(XdrDataInputStream stream) {
XdrSCAddress address = XdrSCAddress.decode(stream);
XdrUint64 nonce = XdrUint64.decode(stream);
return XdrAddressWithNonce(address, nonce);
}