Tx constructor

Tx({
  1. String amount,
  2. Data data,
  3. String fee,
  4. String from,
  5. String hash,
  6. String maxFee,
  7. int size,
  8. DateTime timestamp,
  9. String tips,
  10. String to,
  11. String type,
})

Implementation

Tx({
  this.amount,
  this.data,
  this.fee,
  this.from,
  this.hash,
  this.maxFee,
  this.size,
  this.timestamp,
  this.tips,
  this.to,
  this.type,
});