TxScriptPubKey constructor

TxScriptPubKey({
  1. required String asm,
  2. required String hex,
  3. required String type,
  4. int? reqSigs,
  5. List<String>? addresses,
  6. String? asset,
  7. int? amount,
  8. int? units,
  9. int? reissuable,
  10. String? ipfsHash,
})

Implementation

TxScriptPubKey({
  required this.asm,
  required this.hex,
  required this.type,
  this.reqSigs,
  this.addresses,
  this.asset,
  this.amount,
  this.units,
  this.reissuable,
  this.ipfsHash,
});