decode method Null safety
- XdrDataInputStream stream
Implementation
static XdrAccountEntryV3 decode(XdrDataInputStream stream) {
XdrAccountEntryV3 decoded = XdrAccountEntryV3(
XdrExtensionPoint.decode(stream),
XdrUint32.decode(stream),
XdrUint64.decode(stream));
return decoded;
}