captcha method

  1. @MPI(name: "mesh.captcha.apply")
Future<Captcha?> captcha(
  1. String kind,
  2. Map<String, String> features, {
  3. Context? ctx,
})

Captcha apply a graphics captcha.

Implementation

@MPI(name: "mesh.captcha.apply")
Future<Captcha?> captcha(String kind, Map<String, String> features, {Context? ctx}) {
  throw UnimplementedError('captcha() has not been implemented.');
}