EscrowCancel constructor

EscrowCancel({
  1. required String account,
  2. required String owner,
  3. required int offerSequence,
  4. String signingPubKey = "",
  5. int? sequence,
  6. String? fee,
  7. int? lastLedgerSequence,
  8. List<XRPLMemo>? memos = const [],
  9. int? ticketSequance,
})

owner The address of the account that funded the Escrow. offerSequence Transaction sequence (or Ticket number) of the EscrowCreate transaction that created the Escrow.

Implementation

EscrowCancel({
  required super.account,
  required this.owner,
  required this.offerSequence,
  super.signingPubKey,
  super.sequence,
  super.fee,
  super.lastLedgerSequence,
  super.memos,
  super.ticketSequance,
}) : super(transactionType: XRPLTransactionType.ESCROW_CANCEL);