Utxo constructor

Utxo({
  1. required OutPoint outpoint,
  2. required int blockHeight,
  3. required bool isCoinbase,
  4. required Int64 sats,
  5. required String script,
  6. required bool isFinal,
  7. Token? token,
  8. PluginEntries? plugins,
})

Implementation

Utxo({
  required this.outpoint,
  required this.blockHeight,
  required this.isCoinbase,
  required this.sats,
  required this.script,
  required this.isFinal,
  this.token,
  this.plugins,
});