Map<String, dynamic>
toJson()
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['mzAppId'] = this._mzAppId;
data['mzAppKey'] = this._mzAppKey;
data['oppoAppKey'] = this._oppoAppKey;
data['oppoAppSecret'] = this._oppoAppSecret;
data['miAppId'] = this._miAppId;
data['miAppKey'] = this._miAppKey;
data['fcmId'] = this._fcmId;
data['apnsCertName'] = this._apnsCertName;
data['enableMeiZuPush'] = this._enableMeiZuPush;
data['enableOppoPush'] = this._enableOppoPush;
data['enableMiPush'] = this._enableMiPush;
data['enableFCM'] = this._enableFCM;
data['enableHWPush'] = this._enableHWPush;
data['enableVivoPush'] = this._enableVivoPush;
data['enableAPNS'] = this._enableAPNS;
return data;
}