DepositPreauth constructor
DepositPreauth({})
authorize
Grant preauthorization to this address. You must provide this OR
unauthorize
but not both.
unauthorize
Revoke preauthorization from this address. You must provide this OR
authorize
but not both.
Implementation
DepositPreauth({
required super.account,
this.authorize,
this.unauthorize,
super.signingPubKey,
super.sequence,
super.fee,
super.lastLedgerSequence,
}) : super(transactionType: XRPLTransactionType.DEPOSIT_PREAUTH) {
final err = _getError();
assert(err == null, err);
}