decode method Null safety

XdrLedgerBounds decode(
  1. XdrDataInputStream stream
)

Implementation

static XdrLedgerBounds decode(XdrDataInputStream stream) {
  XdrLedgerBounds decoded =
      XdrLedgerBounds(XdrUint32.decode(stream), XdrUint32.decode(stream));
  return decoded;
}