captcha method

  1. @MPI(flags: 8, 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(flags: 8, name: "mesh.captcha.apply")
Future<Captcha?> captcha(String kind, Map<String, String> features, {Context? ctx}) {
  throw UnimplementedError('captcha() has not been implemented.');
}