toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final addedContactInfoList = this.addedContactInfoList;
final addedMobileDeviceIdList = this.addedMobileDeviceIdList;
final advertiserId = this.advertiserId;
final removedContactInfoList = this.removedContactInfoList;
final removedMobileDeviceIdList = this.removedMobileDeviceIdList;
return {
'addedContactInfoList': ?addedContactInfoList,
'addedMobileDeviceIdList': ?addedMobileDeviceIdList,
'advertiserId': ?advertiserId,
'removedContactInfoList': ?removedContactInfoList,
'removedMobileDeviceIdList': ?removedMobileDeviceIdList,
};
}