Placement constructor

Placement({
  1. String? placementName,
  2. String? rewardName,
  3. int? placementId,
  4. int? rewardAmount,
})

Implementation

Placement(
    {this.placementName,
    this.rewardName,
    this.placementId,
    this.rewardAmount});