copyWith method
- bool? belongsToUs,
- bool? spent,
- NodeWithAddress? node,
Implementation
ElectrumOutput copyWith({
bool? belongsToUs,
bool? spent,
NodeWithAddress? node,
}) {
return ElectrumOutput(
scriptPubKey: scriptPubKey,
value: value,
n: n,
spent: spent ?? this.spent,
belongsToUs: belongsToUs ?? this.belongsToUs,
node: node ?? this.node,
);
}