copyWith method
ExternalPaymentScheduleRequest
copyWith({
- PaymentScheduleInterval? interval,
- int? intervalExecutionDay,
- DateTime? startDate,
- DateTime? endDate,
- DateTime? adjustedStartDate,
Implementation
ExternalPaymentScheduleRequest copyWith(
{enums.PaymentScheduleInterval? interval,
int? intervalExecutionDay,
DateTime? startDate,
DateTime? endDate,
DateTime? adjustedStartDate}) {
return ExternalPaymentScheduleRequest(
interval: interval ?? this.interval,
intervalExecutionDay: intervalExecutionDay ?? this.intervalExecutionDay,
startDate: startDate ?? this.startDate,
endDate: endDate ?? this.endDate,
adjustedStartDate: adjustedStartDate ?? this.adjustedStartDate);
}