copyWith method
Implementation
PaymentLimits copyWith(
{int? averageAmount, int? maximumAmount, int? monthlyAmount}) {
return PaymentLimits(
averageAmount: averageAmount ?? this.averageAmount,
maximumAmount: maximumAmount ?? this.maximumAmount,
monthlyAmount: monthlyAmount ?? this.monthlyAmount);
}