CaptchaInfo.fromJson constructor

CaptchaInfo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CaptchaInfo.fromJson(Map<String,dynamic> json) => CaptchaInfo(
  captchaId: json['captcha_id'] as String,
  expireTime: json['expire_time'] as int,
  captchaData: CaptchaData.fromJson(json['captcha_data'])
);