getEncoded function

Uint8List getEncoded(
  1. ECPoint? P, [
  2. bool compressed = true
])

ECPoint encode to Uint8List

Implementation

Uint8List getEncoded(ECPoint? P, [bool compressed = true]) {
  return P!.getEncoded(compressed);
}