PayPeriodDetails constructor

PayPeriodDetails({
  1. String? startDate,
  2. String? endDate,
  3. String? payDay,
  4. double? grossEarnings,
  5. double? checkAmount,
})

Implementation

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