copyWith method
Implementation
BootstrapWitness copyWith({
Vkey? vkey,
Ed25519Signature? signature,
List<int>? chainCode,
List<int>? attributes,
}) {
return BootstrapWitness(
vkey: vkey ?? this.vkey,
signature: signature ?? this.signature,
chainCode: chainCode ?? this.chainCode,
attributes: attributes ?? this.attributes,
);
}