AdReward constructor

const AdReward({
  1. required int amount,
  2. required String type,
})

Creates a reward.

Implementation

const AdReward({
  required this.amount,
  required this.type,
});