decode static method

Implementation

static XdrStellarValueExt decode(XdrDataInputStream stream) {
  XdrStellarValueExt decodedStellarValueExt =
      XdrStellarValueExt(stream.readInt());
  switch (decodedStellarValueExt.discriminant) {
    case 0:
      break;
  }
  return decodedStellarValueExt;
}