ExchangeTransactionContract.deserialize constructor
Implementation
factory ExchangeTransactionContract.deserialize(List<int> bytes) {
final decode = TronProtocolBufferImpl.decode(bytes);
return ExchangeTransactionContract(
ownerAddress: TronAddress.fromBytes(decode.getField(1)),
exchangeId: decode.getField(2),
tokenId: decode.getField(3),
quant: decode.getField(4),
expected: decode.getField(5));
}