groth16PublicSizeForZkeyFile method

Future<int> groth16PublicSizeForZkeyFile({
  1. required String zkeyPath,
  2. int errorBufferSize = _defaultErrorBufferSize,
})

Implementation

Future<int> groth16PublicSizeForZkeyFile({
  required String zkeyPath,
  int errorBufferSize = _defaultErrorBufferSize,
}) {
  return FlutterRapidsnarkPlatform.instance.groth16PublicSizeForZkeyFile(
    zkeyPath: zkeyPath,
    errorBufferSize: errorBufferSize,
  );
}