JobAssignment constructor

JobAssignment({
  1. Money? hourlyRate,
  2. Money? annualRate,
  3. String? jobTitle,
  4. JobAssignmentPayType? payType,
  5. int? weeklyHours,
})

Implementation

JobAssignment({
  this.hourlyRate, this.annualRate, this.jobTitle, this.payType,
  this.weeklyHours
});