toJson method
Implementation
Map<String, dynamic> toJson() {
Map<String, dynamic> json = <String, dynamic>{};
json["appName"] = appName;
json["appId"] = appId;
json["allowShowNotify"] = allowShowNotify;
json["debug"] = debug;
json["supportMultiProcess"] = supportMultiProcess;
json["useMediation"] = useMediation;
json["wxAppId"] = wxAppId;
return json;
}