AttributionEntity.fromJson constructor

AttributionEntity.fromJson(
  1. dynamic json
)

Implementation

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