AdRewardEvent constructor

AdRewardEvent({
  1. required int rewardType,
  2. required bool rewardVerify,
  3. required int rewardAmount,
  4. required String rewardName,
  5. int? errCode,
  6. String? errMsg,
  7. String? customData,
  8. String? userId,
  9. required String adId,
  10. required String action,
})

Implementation

AdRewardEvent(
    {required this.rewardType,
    required this.rewardVerify,
    required this.rewardAmount,
    required this.rewardName,
    this.errCode,
    this.errMsg,
    this.customData,
    this.userId,
    required String adId,
    required String action})
    : super(adId: adId, action: action);