PromoShare constructor

const PromoShare({
  1. required Percentage percentage,
  2. required PreciseDateTime addedAt,
  3. PreciseDateTime? removedAt,
})

Implementation

const PromoShare({
  required this.percentage,
  required this.addedAt,
  this.removedAt,
});