copyWith method
Apr
copyWith({
- double? aprPercentage,
- AprAprType? aprType,
- double? balanceSubjectToApr,
- double? interestChargeAmount,
Implementation
Apr copyWith(
{double? aprPercentage,
enums.AprAprType? aprType,
double? balanceSubjectToApr,
double? interestChargeAmount}) {
return Apr(
aprPercentage: aprPercentage ?? this.aprPercentage,
aprType: aprType ?? this.aprType,
balanceSubjectToApr: balanceSubjectToApr ?? this.balanceSubjectToApr,
interestChargeAmount:
interestChargeAmount ?? this.interestChargeAmount);
}