From 25c45d6a2ddf0cc192ca34a3b9e8e05a229e0e0e Mon Sep 17 00:00:00 2001 From: hbshun Date: Mon, 31 May 2021 15:20:04 +0800 Subject: [PATCH] =?UTF-8?q?operator=E5=8F=AF=E8=83=BD=E4=B8=BAnull,=20Stri?= =?UTF-8?q?ng=3F=20operator?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/jverify.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jverify.dart b/lib/jverify.dart index 0403397..0563db7 100644 --- a/lib/jverify.dart +++ b/lib/jverify.dart @@ -778,7 +778,7 @@ enum JVTextAlignmentType { left, right, center } class JVListenerEvent { int code; //返回码,具体事件返回码请查看(https://docs.jiguang.cn/jverification/client/android_api/) String message; //事件描述、事件返回值等 - String operator; //成功时为对应运营商,CM代表中国移动,CU代表中国联通,CT代表中国电信。失败时可能为null + String? operator; //成功时为对应运营商,CM代表中国移动,CU代表中国联通,CT代表中国电信。失败时可能为null JVListenerEvent.fromJson(Map json) : code = json['code'],