提交 fe140819 authored 作者: JarvanMo's avatar JarvanMo

fix #357

上级 e05678c7
...@@ -117,7 +117,7 @@ class WeChatLaunchMiniProgramResponse extends BaseWeChatResponse { ...@@ -117,7 +117,7 @@ class WeChatLaunchMiniProgramResponse extends BaseWeChatResponse {
class WeChatPaymentResponse extends BaseWeChatResponse { class WeChatPaymentResponse extends BaseWeChatResponse {
final int type; final int type;
final String extData; final String? extData;
WeChatPaymentResponse.fromMap(Map map) WeChatPaymentResponse.fromMap(Map map)
: type = map["type"], : type = map["type"],
...@@ -168,7 +168,7 @@ class WeChatAuthByQRCodeFinishedResponse extends BaseWeChatResponse { ...@@ -168,7 +168,7 @@ class WeChatAuthByQRCodeFinishedResponse extends BaseWeChatResponse {
///[qrCode] in memory. ///[qrCode] in memory.
class WeChatAuthGotQRCodeResponse extends BaseWeChatResponse { class WeChatAuthGotQRCodeResponse extends BaseWeChatResponse {
final Uint8List qrCode; final Uint8List? qrCode;
WeChatAuthGotQRCodeResponse.fromMap(Map map) WeChatAuthGotQRCodeResponse.fromMap(Map map)
: qrCode = map["qrCode"], : qrCode = map["qrCode"],
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论