groth16Verify method
Future<bool>
groth16Verify(
{ - required String proof,
- required String inputs,
- required String verificationKey,
- int errorBufferSize = _defaultErrorBufferSize,
})
Implementation
Future<bool> groth16Verify({
required String proof,
required String inputs,
required String verificationKey,
int errorBufferSize = _defaultErrorBufferSize,
}) {
return FlutterRapidsnarkPlatform.instance.groth16Verify(
proof: proof,
inputs: inputs,
verificationKey: verificationKey,
errorBufferSize: errorBufferSize,
);
}