TransactionInput constructor

TransactionInput({
  1. double? amount,
  2. String? from,
  3. String? nftAddress,
  4. bool? spent,
  5. int? timestamp,
  6. String? type,
})

Implementation

TransactionInput({
  this.amount,
  this.from,
  this.nftAddress,
  this.spent,
  this.timestamp,
  this.type,
});