decode method Null safety
- XdrDataInputStream stream
Implementation
static XdrLedgerHeaderHistoryEntryExt decode(XdrDataInputStream stream) {
XdrLedgerHeaderHistoryEntryExt decodedLedgerHeaderHistoryEntryExt =
XdrLedgerHeaderHistoryEntryExt(stream.readInt());
switch (decodedLedgerHeaderHistoryEntryExt.discriminant) {
case 0:
break;
}
return decodedLedgerHeaderHistoryEntryExt;
}