createPoint method
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);
Create an ECPoint on its curve from its coordinates
@override
ECPoint createPoint(BigInt x, BigInt y, [bool withCompression = false]) =>
ECPoint(this, fromBigInteger(x), fromBigInteger(y), withCompression);