createPoint method

  1. @override
ECPoint createPoint(
  1. BigInt x,
  2. BigInt y, [
  3. bool withCompression = false
])
override

Create an ECPoint on its curve from its coordinates

Implementation

@override
ECPoint createPoint(BigInt x, BigInt y, [bool withCompression = false]) =>
    ECPoint(this, fromBigInteger(x), fromBigInteger(y), withCompression);