groth16PublicSizeForZkeyBuf method

Future<int> groth16PublicSizeForZkeyBuf({
  1. required Uint8List zkey,
  2. int errorBufferSize = _defaultErrorBufferSize,
})

Implementation

Future<int> groth16PublicSizeForZkeyBuf({
  required Uint8List zkey,
  int errorBufferSize = _defaultErrorBufferSize,
}) {
  return FlutterRapidsnarkPlatform.instance.groth16PublicSizeForZkeyBuf(
    zkey: zkey,
    errorBufferSize: errorBufferSize,
  );
}