TransactionData constructor

TransactionData({
  1. required String account,
  2. required int fee,
  3. required int flags,
  4. required int? offerSequence,
  5. required int sequence,
  6. required String signingPubKey,
  7. required String transactionType,
  8. required String txnSignature,
  9. required String hash,
  10. required Map<String, dynamic> metaData,
})

Implementation

TransactionData({
  required this.account,
  required this.fee,
  required this.flags,
  required this.offerSequence,
  required this.sequence,
  required this.signingPubKey,
  required this.transactionType,
  required this.txnSignature,
  required this.hash,
  required this.metaData,
});