getPublicFromPrivateKeyBigInt function
Implementation
Uint8List? getPublicFromPrivateKeyBigInt(BigInt bigint,
    [bool compress = false]) {
  ECPoint? p = params.G * bigint;
  if (p != null) {
    return p.getEncoded(compress);
  } else {
    return null;
  }
}