ECCurveBase constructor

ECCurveBase(
  1. BigInt? a,
  2. BigInt? b
)

Implementation

ECCurveBase(BigInt? a, BigInt? b) {
  _a = fromBigInteger(a);
  _b = fromBigInteger(b);
}