toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final map = <String, dynamic>{};
  if (_secondaryAttribution != null) {
    map['secondaryAttribution'] = _secondaryAttribution?.toJson();
  }
  map['city'] = _city;
  map['openId'] = _openId;
  map['retryAppStartDelay'] = _retryAppStartDelay;
  map['currentCity'] = _currentCity;
  map['mstatus'] = _mstatus;
  map['noticeTitle'] = _noticeTitle;
  map['noticeContent'] = _noticeContent;
  map['province'] = _province;
  map['activityChannel'] = _activityChannel;
  map['marketingPlatform'] = _marketingPlatform;
  map['applyCancelTime'] = _applyCancelTime;
  map['packageNameList'] = _packageNameList;
  map['attributionCount'] = _attributionCount;
  map['unionId'] = _unionId;
  map['isAttributionSuccess'] = _isAttributionSuccess;
  map['gameToken'] = _gameToken;
  map['loginStatus'] = _loginStatus;
  map['userId'] = _userId;
  map['winningIdea'] = _winningIdea;
  map['isCanCancel'] = _isCanCancel;
  map['isNatureChannel'] = _isNatureChannel;
  map['isShowNotice'] = _isShowNotice;
  map['currentCityIsBlack'] = _currentCityIsBlack;
  map['isCancelAccount'] = _isCancelAccount;
  map['attributionType'] = _attributionType;
  map['ts'] = _ts;
  return map;
}