EscrowCancel constructor
EscrowCancel({})
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);