XRPLTxJson constructor

XRPLTxJson({
  1. required String account,
  2. required BigInt fee,
  3. required int flags,
  4. required int lastLedgerSequence,
  5. required List<OnChainXRPLMemo> memos,
  6. required int nFTokenTaxon,
  7. required int sequence,
  8. required String signingPubKey,
  9. required String transactionType,
  10. required String txnSignature,
  11. required String hash,
})

Implementation

XRPLTxJson({
  required this.account,
  required this.fee,
  required this.flags,
  required this.lastLedgerSequence,
  required this.memos,
  required this.nFTokenTaxon,
  required this.sequence,
  required this.signingPubKey,
  required this.transactionType,
  required this.txnSignature,
  required this.hash,
});