ElectrumOutput constructor

const ElectrumOutput({
  1. required ElectrumScriptPubKey scriptPubKey,
  2. required BigInt value,
  3. required int n,
  4. bool belongsToUs = false,
  5. bool spent = false,
  6. required dynamic node,
})

Implementation

const ElectrumOutput({
  required this.scriptPubKey,
  required this.value,
  required this.n,
  this.belongsToUs = false,
  this.spent = false,
  required this.node,
});