AdRewardEvent constructor

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

Implementation

AdRewardEvent(
    {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);