copyWith method
TransferRecurringSchedule
copyWith({
- TransferScheduleIntervalUnit? intervalUnit,
- int? intervalCount,
- int? intervalExecutionDay,
- DateTime? startDate,
- DateTime? endDate,
Implementation
TransferRecurringSchedule copyWith(
{enums.TransferScheduleIntervalUnit? intervalUnit,
int? intervalCount,
int? intervalExecutionDay,
DateTime? startDate,
DateTime? endDate}) {
return TransferRecurringSchedule(
intervalUnit: intervalUnit ?? this.intervalUnit,
intervalCount: intervalCount ?? this.intervalCount,
intervalExecutionDay: intervalExecutionDay ?? this.intervalExecutionDay,
startDate: startDate ?? this.startDate,
endDate: endDate ?? this.endDate);
}