copyWith method
Implementation
InvoiceResponseModel copyWith(
{int? amountDueCents,
dynamic discountPercentOff,
int? nextPaymentAttemptUnix}) {
return InvoiceResponseModel(
amountDueCents: amountDueCents ?? this.amountDueCents,
discountPercentOff: discountPercentOff ?? this.discountPercentOff,
nextPaymentAttemptUnix:
nextPaymentAttemptUnix ?? this.nextPaymentAttemptUnix);
}