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