PromotionModel constructor

PromotionModel(
  1. String name,
  2. String employeeName,
  3. String promotionDate,
  4. double currentCtc,
  5. double revisedCtc,
)

Implementation

PromotionModel(
  this.name,
  this.employeeName,
  this.promotionDate,
  this.currentCtc,
  this.revisedCtc,
);