copyWith method
Implementation
G2NativeProjective copyWith({
Bls12NativeFp2? x,
Bls12NativeFp2? y,
Bls12NativeFp2? z,
}) {
return G2NativeProjective(x: x ?? this.x, y: y ?? this.y, z: z ?? this.z);
}
G2NativeProjective copyWith({
Bls12NativeFp2? x,
Bls12NativeFp2? y,
Bls12NativeFp2? z,
}) {
return G2NativeProjective(x: x ?? this.x, y: y ?? this.y, z: z ?? this.z);
}