ECPointFp constructor

ECPointFp(
  1. ECCurveFp curve,
  2. ECFieldElementFp? x,
  3. ECFieldElementFp? y, [
  4. BigInt? z,
])

Implementation

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