decodeFrom function

ECPoint? decodeFrom(
  1. Uint8List P
)

Uint8List decode to ECPoint

Implementation

ECPoint? decodeFrom(Uint8List P) {
  return _secp256k1.curve.decodePoint(P);
}