BonusPayment constructor

BonusPayment({
  1. String? assignmentId,
  2. String? bonusAmount,
  3. DateTime? grantTime,
  4. String? reason,
  5. String? workerId,
})

Implementation

BonusPayment({
  this.assignmentId,
  this.bonusAmount,
  this.grantTime,
  this.reason,
  this.workerId,
});