Position constructor

Position({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. String? name,
  5. String? externalCode,
  6. String? description,
  7. String? category,
  8. String? importName,
  9. String? shortName,
  10. int? approvedCount,
  11. int? pendingCount,
  12. String? classCode,
  13. PositionStatus? status,
  14. PositionApplicationStatus? applicationStatus,
  15. String? rate1,
  16. PositionRate1Type? rate1Type,
  17. String? rate2,
  18. PositionRate2Type? rate2Type,
  19. String? rate3,
  20. PositionRate3Type? rate3Type,
})

Implementation

Position({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.name,
  this.externalCode,
  this.description,
  this.category,
  this.importName,
  this.shortName,
  this.approvedCount,
  this.pendingCount,
  this.classCode,
  this.status,
  this.applicationStatus,
  this.rate1,
  this.rate1Type,
  this.rate2,
  this.rate2Type,
  this.rate3,
  this.rate3Type,
});