XrpTxData constructor

XrpTxData({
  1. required String account,
  2. required String transactionType,
  3. String? destination,
  4. XrpAmountType? amount,
  5. XrpTokenAmount? limitAmount,
  6. int flags = 0,
  7. required int sequence,
  8. required String fee,
  9. required int lastLedgerSequence,
})

Implementation

XrpTxData({
  required this.account,
  required this.transactionType,
  this.destination,
  this.amount,
  this.limitAmount,
  this.flags = 0,
  required this.sequence,
  required this.fee,
  required this.lastLedgerSequence,
});