XRPLSigners constructor

XRPLSigners({
  1. required String account,
  2. required String txnSignature,
  3. required String signingPubKey,
})

account The address of the Signer. This can be a funded account in the XRP Ledger or an unfunded address. txnSignature The signature that this Signer provided for this transaction. signingPubKey The public key that should be used to verify this Signer's signature.

Implementation

XRPLSigners(
    {required this.account,
    required this.txnSignature,
    required this.signingPubKey});