decode static method

Implementation

static XdrLedgerKeyTrustLine decode(XdrDataInputStream stream) {
  XdrAccountID accountID = XdrAccountID.decode(stream);
  XdrTrustlineAsset asset = XdrTrustlineAsset.decode(stream);
  return XdrLedgerKeyTrustLine(accountID, asset);
}