ECPointFp constructor
ECPointFp(
- ECCurveFp curve,
- ECFieldElementFp? x,
- ECFieldElementFp? y, [
- BigInt? z,
Implementation
ECPointFp(this.curve, this.x, this.y, [BigInt? z]) {
this.z = z ?? BigInt.one;
zinv = null;
}