PayPeriodDetails constructor

PayPeriodDetails({
  1. double? checkAmount,
  2. List<DistributionBreakdown>? distributionBreakdown,
  3. DateTime? endDate,
  4. double? grossEarnings,
  5. DateTime? payDate,
  6. PayPeriodDetailsPayFrequency? payFrequency,
  7. DateTime? payDay,
  8. DateTime? startDate,
})

Implementation

PayPeriodDetails({
  this.checkAmount,
  this.distributionBreakdown,
  this.endDate,
  this.grossEarnings,
  this.payDate,
  this.payFrequency,
  this.payDay,
  this.startDate,
});