copyWithWrapped method
Implementation
Apr copyWithWrapped(
{Wrapped<double>? aprPercentage,
Wrapped<enums.AprAprType>? aprType,
Wrapped<double?>? balanceSubjectToApr,
Wrapped<double?>? interestChargeAmount}) {
return Apr(
aprPercentage:
(aprPercentage != null ? aprPercentage.value : this.aprPercentage),
aprType: (aprType != null ? aprType.value : this.aprType),
balanceSubjectToApr: (balanceSubjectToApr != null
? balanceSubjectToApr.value
: this.balanceSubjectToApr),
interestChargeAmount: (interestChargeAmount != null
? interestChargeAmount.value
: this.interestChargeAmount));
}