groth16Verify method
Future<bool>
groth16Verify({
- required String proof,
- required String inputs,
- required String verificationKey,
- int errorBufferSize = _defaultErrorBufferSize,
override
Implementation
@override
Future<bool> groth16Verify({
required String proof,
required String inputs,
required String verificationKey,
int errorBufferSize = _defaultErrorBufferSize,
}) async {
final result = await methodChannel.invokeMethod<bool>(
'groth16Verify',
{
"proof": proof,
"inputs": inputs,
"verificationKey": verificationKey,
"errorBufferSize": errorBufferSize,
},
);
return result!;
}