copyWith method
Implementation
Vkeywitness copyWith({
Vkey? vKey,
Ed25519Signature? signature,
}) {
return Vkeywitness(
vKey: vKey ?? this.vKey,
signature: signature ?? this.signature,
);
}
Vkeywitness copyWith({
Vkey? vKey,
Ed25519Signature? signature,
}) {
return Vkeywitness(
vKey: vKey ?? this.vKey,
signature: signature ?? this.signature,
);
}