AccountDelete constructor

AccountDelete({
  1. required String account,
  2. required String destination,
  3. String? destinationTag,
  4. String signingPubKey = "",
  5. int? sequence,
  6. String? fee,
  7. int? lastLedgerSequence,
})

destination The address of the account to which to send any remaining XRP.

Implementation

AccountDelete({
  required super.account,
  required this.destination,
  this.destinationTag,
  super.signingPubKey,
  super.sequence,
  super.fee,
  super.lastLedgerSequence,
}) : super(transactionType: XRPLTransactionType.ACCOUNT_DELETE);