groth16Verify method

Future<bool> groth16Verify({
  1. required String proof,
  2. required String inputs,
  3. required String verificationKey,
  4. 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,
  );
}