copyWith method

QuickbooksEffectiveTaxRate copyWith({
  1. double? rateValue,
  2. DateTime? endDate,
  3. DateTime? effectiveDate,
})

Implementation

QuickbooksEffectiveTaxRate copyWith({
  double? rateValue,
  DateTime? endDate,
  DateTime? effectiveDate,
}) {
  return QuickbooksEffectiveTaxRate(
    rateValue: rateValue ?? this.rateValue,
    endDate: endDate ?? this.endDate,
    effectiveDate: effectiveDate ?? this.effectiveDate,
  );
}