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