copyWith method

Vkeywitness copyWith({
  1. Vkey? vKey,
  2. Ed25519Signature? signature,
})

Implementation

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