SetRegularKey constructor

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

regularKey The classic address derived from the key pair to authorize for this account. If omitted, removes any existing regular key pair from the account. Must not match the account's master key pair.

Implementation

SetRegularKey({
  required super.account,
  super.memos,
  this.regularKey,
  super.ticketSequance,
  super.signingPubKey,
  super.sequence,
  super.fee,
  super.lastLedgerSequence,
}) : super(transactionType: XRPLTransactionType.SET_REGULAR_KEY);