groth16PublicSizeForZkeyFile method
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!;
}