groth16PublicSizeForZkeyFile method

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

Implementation

@override
Future<int> groth16PublicSizeForZkeyFile({
  required String zkeyPath,
  int errorBufferSize = _defaultErrorBufferSize,
}) async {
  final result = await methodChannel.invokeMethod<int>(
    'groth16PublicSizeForZkeyFile',
    {
      "zkeyPath": zkeyPath,
      "errorBufferSize": errorBufferSize,
    },
  );

  return result!;
}