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