Curve constructor

const Curve({
  1. required BigInt p,
  2. required BigInt n,
  3. required BigInt a,
  4. required BigInt b,
  5. required BigInt gx,
  6. required BigInt gy,
})

Implementation

const Curve({
  required this.p,
  required this.n,
  required this.a,
  required this.b,
  required this.gx,
  required this.gy,
});