feat: webview geetest (#1342)

* feat: webview geetest

* opt: geetest

* fix: linux

* remove pwd mobile check

* fix linux check
This commit is contained in:
My-Responsitories
2025-09-27 10:57:41 +08:00
committed by GitHub
parent ee8af925be
commit e3e6bb0e39
5 changed files with 202 additions and 44 deletions

View File

@@ -28,18 +28,16 @@ class CaptchaDataModel {
}
class GeetestData {
GeetestData({
this.challenge,
this.gt,
const GeetestData({
required this.challenge,
required this.gt,
});
String? challenge;
String? gt;
final String challenge;
final String gt;
GeetestData.fromJson(Map<String, dynamic> json) {
challenge = json["challenge"];
gt = json["gt"];
}
factory GeetestData.fromJson(Map<String, dynamic> json) =>
GeetestData(challenge: json["challenge"], gt: json["gt"]);
}
class Tencent {