EarningsTotal constructor

EarningsTotal({
  1. double? currentAmount,
  2. Pay? currentPay,
  3. Pay? ytdPay,
  4. double? hours,
  5. String? isoCurrencyCode,
  6. String? unofficialCurrencyCode,
  7. double? ytdAmount,
})

Implementation

EarningsTotal({
  this.currentAmount,
  this.currentPay,
  this.ytdPay,
  this.hours,
  this.isoCurrencyCode,
  this.unofficialCurrencyCode,
  this.ytdAmount,
});