Paystub constructor

Paystub({
  1. String? accountId,
  2. PaystubEmployer? employer,
  3. Employee? employee,
  4. PayPeriodDetails? payPeriodDetails,
  5. IncomeBreakdown? incomeBreakdown,
  6. dynamic ytdEarnings,
})

Implementation

Paystub({
  this.accountId,
  this.employer,
  this.employee,
  this.payPeriodDetails,
  this.incomeBreakdown,
  this.ytdEarnings,
});