WatchUtxo constructor

WatchUtxo({
  1. required Outpoint outpoint,
  2. required BigInt value,
  3. required Uint8List scriptPubKey,
  4. int? blockHeight,
  5. bool spent = false,
})

Implementation

WatchUtxo({
  required this.outpoint,
  required this.value,
  required this.scriptPubKey,
  this.blockHeight,
  this.spent = false,
});