decode static method

Implementation

static XdrTimeBounds decode(XdrDataInputStream stream) {
  XdrTimeBounds decodedTimeBounds =
      XdrTimeBounds(XdrUint64.decode(stream), XdrUint64.decode(stream));
  return decodedTimeBounds;
}