Library to render and control recaptcha.
From authors of Jaguar.
import 'package:recaptcha_facade/recaptcha_facade.dart';
main() async {
final recaptcha = await Recaptcha.create(
'6Lf3HCkUAAAAAJ2mRonRdQ7Ma-k9Or9uj7lxRy7a', querySelector('#output'));
recaptcha.onSuccess.listen(print);
}
For a simple client-only example, check out this example.
For a complete example with client, check out this example.