TransactionStatusResponse constructor

TransactionStatusResponse(
  1. String? id,
  2. String? blockId,
  3. int? version,
  4. int type,
  5. int? typeGroup,
  6. String amount,
  7. String fee,
  8. String sender,
  9. String senderPublicKey,
  10. String recipient,
  11. String? signature,
  12. String? signSignature,
  13. List<String>? signatures,
  14. String? vendorField,
  15. Map<String, dynamic>? asset,
  16. int confirmations,
  17. Timestamp? timestamp,
  18. String? nonce,
)

Implementation

TransactionStatusResponse(
  this.id,
  this.blockId,
  this.version,
  this.type,
  this.typeGroup,
  this.amount,
  this.fee,
  this.sender,
  this.senderPublicKey,
  this.recipient,
  this.signature,
  this.signSignature,
  this.signatures,
  this.vendorField,
  this.asset,
  this.confirmations,
  this.timestamp,
  this.nonce,
);